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:
parent
ea0f128e9e
commit
abe8551506
2 changed files with 1 additions and 10 deletions
|
@ -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 */
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue