diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-03-10 18:01:21 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-03-10 18:01:29 -0300 |
commit | b27d525efcb8b48157c3659ef98109261841aa91 (patch) | |
tree | 8f7de1b32c943035b20afa7efeb65faac4bdeab4 /web-ui | |
parent | 740a44d3c5916055fe16ddddeda6aed322fa961e (diff) |
#261 Fixing the transition timing
Diffstat (limited to 'web-ui')
-rw-r--r-- | web-ui/app/scss/styles.scss | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/web-ui/app/scss/styles.scss b/web-ui/app/scss/styles.scss index 67342c18..983a1e92 100644 --- a/web-ui/app/scss/styles.scss +++ b/web-ui/app/scss/styles.scss @@ -158,7 +158,6 @@ } &.selected { background: #FFF; - z-index: 2; a { color: #333; } @@ -254,20 +253,20 @@ 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 0.15s, color 0s, z-index 0.15s; padding: 2px 10px; cursor: pointer; + &.selected { font-weight: bold; background: $contrast; color: $navigation_background; } + &:hover { z-index: 5; - transition: z-index 150ms ease-out; background: #CCC; color: $navigation_background; - width: 95%; opacity: 0.90; } } |