]> git.openstreetmap.org Git - rails.git/commitdiff
Simplify menu-icon css
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 26 Jul 2023 16:39:36 +0000 (17:39 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 26 Jul 2023 16:39:36 +0000 (17:39 +0100)
Remove the duplicate display property, since it was force-overridden
by the `!important` keyword in the same definiton. This then makes the
`!important` keywords unnecessary. The menu-icon is floated, and
therefore can't be `inline-block`, so browsers were interpreting that
as `block` all along.

app/assets/stylesheets/common.scss

index 853b7993819fba18ba728ca1f7fbc2835f58b3fa..19cc8e5bed806b0fa2cd8de3c02ebdeea0ab0c83 100644 (file)
@@ -80,11 +80,10 @@ small, aside {
 /* Rules for the header */
 
 #menu-icon {
-  display: none !important;
+  display: none;
   float: right;
   background: image-url("menu-icon.png") no-repeat;
   background-size: 30px 30px;
-  display: block;
   width: 30px;
   height: 30px;
   margin: 14px 10px 0 0;
@@ -244,7 +243,7 @@ body.compact-nav {
 
 body.small-nav {
   #menu-icon {
-    display: inline-block !important;
+    display: block;
   }
 
   nav.primary,