diff options
author | Giovane <giovaneliberato@gmail.com> | 2015-09-14 11:17:13 -0300 |
---|---|---|
committer | Giovane <giovaneliberato@gmail.com> | 2015-09-14 15:55:37 -0300 |
commit | b4bc06226f7b64a928d54483b77707022f068235 (patch) | |
tree | b5d21c98d80bdda29db6aa019fc9fcbeb6c28b3d /web-ui/app/scss | |
parent | aba0dac911a81560a735a9484062e460dab17dbd (diff) |
#442 Create feedback element on side navbar.
Diffstat (limited to 'web-ui/app/scss')
-rw-r--r-- | web-ui/app/scss/styles.scss | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/web-ui/app/scss/styles.scss b/web-ui/app/scss/styles.scss index 4f2a56ee..57227fad 100644 --- a/web-ui/app/scss/styles.scss +++ b/web-ui/app/scss/styles.scss @@ -390,17 +390,15 @@ section { } } - ul#logout { + ul#logout, ul#feedback { li { - color: $action_buttons; background-color: $navigation_background; padding: 5px 10px; position: relative; @include searching(4px, 19px, #333, 0.7em); &:hover { - background-color: $action_buttons; - color: $navigation_background; + color: $navigation_background; } div { @@ -417,6 +415,24 @@ section { } } + ul#logout li{ + color: $action_buttons; + &:hover { + background-color: $action_buttons; + } + } + + ul#feedback{ + margin-bottom: 0; + + li { + color: $light_orange; + &:hover { + background-color: $light_orange; + } + } + } + h3 { color: white; text-transform: uppercase; |