space all the way around action buttons

4px margin matches 8px cell padding (margin is added on both sides)

and center when buttons collapse to single column
This commit is contained in:
Min RK
2024-03-08 10:08:11 +01:00
parent d87e2dd3ae
commit f47d0a1524

View File

@@ -50,8 +50,8 @@ tr.noborder > td {
vertical-align: inherit;
}
.user-row .actions > * {
margin-right: 5px;
.user-row .actions button {
margin: 4px;
}
.admin-header-buttons {
@@ -88,4 +88,9 @@ goals:
.admin-table-head #actions-header {
width: 140px;
}
.user-row .actions button {
/* full-width buttons when they get collapsed into a single column */
margin: 4px 0px 4px 0px;
width: 100%;
}
}