FIX: Buttons out of alignment on some browsers
This commit is contained in:
parent
11d9b2e011
commit
0a244111bc
|
@ -25,6 +25,7 @@
|
||||||
<td>{{format-unix-date product.updated}}</td>
|
<td>{{format-unix-date product.updated}}</td>
|
||||||
<td class="td-right">{{product.active}}</td>
|
<td class="td-right">{{product.active}}</td>
|
||||||
<td class="td-right">
|
<td class="td-right">
|
||||||
|
<div class="align-buttons">
|
||||||
{{#link-to "adminPlugins.discourse-subscriptions.products.show" product.id class="btn no-text btn-icon"}}
|
{{#link-to "adminPlugins.discourse-subscriptions.products.show" product.id class="btn no-text btn-icon"}}
|
||||||
{{d-icon "far-edit"}}
|
{{d-icon "far-edit"}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
|
@ -33,6 +34,7 @@
|
||||||
actionParam=product
|
actionParam=product
|
||||||
icon="trash-alt"
|
icon="trash-alt"
|
||||||
class="btn-danger btn no-text btn-icon"}}
|
class="btn-danger btn no-text btn-icon"}}
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
|
@ -14,6 +14,14 @@ textarea[readonly] {
|
||||||
.btn-right {
|
.btn-right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
.align-buttons {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.plan-amount {
|
.plan-amount {
|
||||||
|
|
Loading…
Reference in New Issue