]> git.openstreetmap.org Git - rails.git/commitdiff
Remove custom css overrides for the users list
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 3 Nov 2021 17:43:01 +0000 (17:43 +0000)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 3 Nov 2021 18:35:42 +0000 (18:35 +0000)
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.

app/assets/stylesheets/common.scss
app/views/users/index.html.erb

index e404349176c09c9963f18faa16084ef1013ca1c7..255e04511b0eff0f228e141a40189822067f6b9d 100644 (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 */
index cb47a4122166c383f2cd11ad113d1b839486cff7..12d5ae7af232edb801b0f5340d86435a1a2c2d39 100644 (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>