diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-03-11 12:03:59 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-03-11 12:05:20 -0300 |
commit | e455d47f16f5f76f5c68db21532958012e38381d (patch) | |
tree | 405a28df9cb5445086b06f4d0011f85f87b347e2 /web-ui/app | |
parent | 12448c2fe40824a238325ec3bf42b4488ed757b5 (diff) |
Revert "#261 - Adding a hover behavior for the default tags"
This reverts commit c3eab90103b01b3551a83a8d747e11fc4945582e.
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/scss/styles.scss | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/web-ui/app/scss/styles.scss b/web-ui/app/scss/styles.scss index a7f36b35..d3c96530 100644 --- a/web-ui/app/scss/styles.scss +++ b/web-ui/app/scss/styles.scss @@ -158,7 +158,7 @@ } &.selected { background: #FFF; - z-index: 2; + z-index: 3; a { color: #333; } @@ -254,20 +254,18 @@ section { border-right: 1px solid lighten($navigation_background, 10%); ul#default-tag-list, #custom-tag-list { li { - transition: background-color 150ms ease-in-out; + transition: background-color 150ms ease-out; padding: 2px 10px; cursor: pointer; + &:hover { + background: #CCC; + color: $navigation_background; + } &.selected { font-weight: bold; background: $contrast; color: $navigation_background; } - &:hover { - z-index: 5; - transition: z-index 150ms ease-out; - background: #CCC; - color: $navigation_background; - } } } |