diff options
author | Lisa Junger <ljunger@thoughtworks.com> | 2015-01-29 15:19:56 +0100 |
---|---|---|
committer | Lisa Junger <ljunger@thoughtworks.com> | 2015-01-29 15:27:44 +0100 |
commit | 29d21251e9ff36578e4e72338da86b6090da9f3b (patch) | |
tree | 470337f5b591a853ac692de31e6d440b3a6fb176 /web-ui/app/scss | |
parent | 050869ee91f8bb29b38086fd8c549769ee7c0524 (diff) |
Issue #242 abstracted color for logout to use _colors.
Diffstat (limited to 'web-ui/app/scss')
-rw-r--r-- | web-ui/app/scss/styles.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web-ui/app/scss/styles.scss b/web-ui/app/scss/styles.scss index c170bf49..2aa03c82 100644 --- a/web-ui/app/scss/styles.scss +++ b/web-ui/app/scss/styles.scss @@ -325,7 +325,7 @@ section { } li { color: #000000; - background-color: #2ba6cb; + background-color: $action_buttons; padding: 5px 10px; position: relative; @include searching(4px, 19px, #333, 0.7em); @@ -487,7 +487,7 @@ button { z-index: 10000; position: relative; &.logout { - color: #2ba6cb; + color: $action_buttons; } } @@ -518,7 +518,7 @@ button { @include btn-transition; &.logout{ color: #000000; - background: #2ba6cb; + background: $action_buttons; } } &[title]:hover:after { |