Remove custom css overrides for the users list

The margins on the buttons aren't needed since the table has a bottom
margin, and the button class has never been applied since it was
incorrectly in the id field. The table row override had no effect since
the cells have their own vertical-alignment set.
This commit is contained in:
Andy Allan 2021-11-03 17:43:01 +00:00
parent ea0f128e9e
commit abe8551506
2 changed files with 1 additions and 10 deletions

View file

@ -1118,15 +1118,6 @@ tr.turn:hover {
#user_list {
width: 100%;
tr {
vertical-align: middle;
}
}
#user_list_actions {
float: right;
margin-top: $lineheight/2;
}
/* Rules for the diary list page */

View file

@ -35,7 +35,7 @@
<%= render @users %>
</table>
<div id="user_list_actions buttons">
<div>
<%= submit_tag t(".confirm"), :name => "confirm", :class => "btn btn-primary" %>
<%= submit_tag t(".hide"), :name => "hide", :class => "btn btn-primary" %>
</div>