From: Andy Allan Date: Wed, 11 Dec 2019 14:57:23 +0000 (+0100) Subject: Combine the two different offwhite background colours, and use the lighter one X-Git-Tag: live~2360^2~2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/9b6114ab0bf84acf6191a091f73706afc4ae2753 Combine the two different offwhite background colours, and use the lighter one --- diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 40c5eaa2a..98d47a22b 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -1236,7 +1236,7 @@ tr.turn:hover { width: 12px; height: 12px; margin: 4px 0px; - border: 1px solid rgba(0, 0, 0, .1); + border: 1px solid rgba(0, 0, 0, .1); // add color via inline css on element: background-color: ; } } @@ -1867,7 +1867,7 @@ tr.turn:hover { } .inbox-row { - background: #f8f8ff; + background: $offwhite; } .inbox-row-unread { @@ -2434,7 +2434,7 @@ input.richtext_title[type="text"] { display: inline-block; vertical-align: top; margin-left: 15px; - background-color: #f8f8ff; + background-color: $offwhite; padding: $lineheight/2; width: 220px; diff --git a/app/assets/stylesheets/parameters.scss b/app/assets/stylesheets/parameters.scss index 1cae5ba2f..4381e9d14 100644 --- a/app/assets/stylesheets/parameters.scss +++ b/app/assets/stylesheets/parameters.scss @@ -2,7 +2,7 @@ $lineheight: 20px; $typeheight: 14px; -$offwhite: #f4f4ff; +$offwhite: #f8f8ff; $blue: #7092FF; $lightblue: #B8C5F0; $green: #7ebc6f;