diff options
author | Lorenz Diener <halcyon@icosahedron.website> | 2017-02-10 15:35:19 +0000 |
---|---|---|
committer | Lorenz Diener <halcyon@icosahedron.website> | 2017-02-10 15:35:19 +0000 |
commit | c9f42a7b851ed80442cbfba8ba4a3a0ec062f8da (patch) | |
tree | 5fda57dd0e254f30c9bf2261924158de38cae992 /app/assets/stylesheets | |
parent | c424df5192f346dba5332a4b3a2de43b2f028e0c (diff) |
Move more inline colours to scss
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/components.scss | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index 6bb683f17..6c2e45755 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -34,7 +34,8 @@ .column-icon { color: $color3; - + background: lighten($color1, 4%); + &:hover { color: lighten($color3, 7%); } @@ -883,6 +884,7 @@ a.status__content__spoiler-link { .autosuggest-textarea__textarea { height: 100px; + background: $color5; } .autosuggest-textarea__suggestions { @@ -1020,3 +1022,23 @@ button.active i.fa-retweet { font-size: 14px; margin: 0; } + +.loading-indicator { + color: #616b86; + color: #00FF00; +} + +.collapsable-collapsed { + color: $color3; + background: lighten($color1, 4%); +} + +.collapsable { + color: $color5; + background: lighten($color1, 6%); +} + +.media-spoiler { + background: $color8; + color: $color5; +} |