diff options
-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; - } } } |