]> git.openstreetmap.org Git - rails.git/commitdiff
Use a new colour name for the vibrant greens
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 11 Dec 2019 15:51:04 +0000 (16:51 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 11 Dec 2019 15:51:04 +0000 (16:51 +0100)
app/assets/stylesheets/common.scss
app/assets/stylesheets/parameters.scss

index 7db36b6287ff59c04ba29a53e3260cdbefc40113..54fd52dd2f4c2bb6d9092796033e7cac55305678 100644 (file)
@@ -505,7 +505,7 @@ body.compact {
   }
 
   &.active {
-    background-color: #9ed485;
+    background-color: $vibrant-green;
   }
 
   .icon {
@@ -939,7 +939,7 @@ header .search_forms,
 
   input:focus {
     outline: none;
-    box-shadow: 0px 0px 7px #9ED485;
+    box-shadow: 0px 0px 7px $vibrant-green;
   }
 
   input[type=submit].float {
@@ -2775,7 +2775,7 @@ input.richtext_title[type="text"] {
       font-weight: 300;
       font-size: 34px;
       span {
-        color: #76c551;
+        color: $vibrant-green;
       }
     }
 
@@ -2789,7 +2789,7 @@ input.richtext_title[type="text"] {
       background-repeat: no-repeat;
       background-image: image-url('about/osm.png');
       background-size: cover;
-      background-color: #76c551;
+      background-color: $vibrant-green;
     }
 
     .byosm {
@@ -2803,7 +2803,7 @@ input.richtext_title[type="text"] {
       font: 500 20px/24px Helvetica, Arial, sans-serif;
       white-space: nowrap;
       color: #fff;
-      background: #76c551;
+      background: $vibrant-green;
     }
 
     .byosm span {
index 4381e9d14f23c4afd34c1ee51109dcc1a56cf910..90fbd74b7d035c65530e1f66dd15427d5f751bc4 100644 (file)
@@ -6,6 +6,7 @@ $offwhite: #f8f8ff;
 $blue: #7092FF;
 $lightblue: #B8C5F0;
 $green: #7ebc6f;
+$vibrant-green: #76c551;
 $grey: #CCC;
 $red: red;
 $lightgrey: #EEE;