diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-03-11 12:03:41 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-03-11 12:05:20 -0300 |
commit | 5a68ae4b9c5ed273513b25844e618023be62e706 (patch) | |
tree | 08566964619b8306b1831fec2ace0bd5f7878518 | |
parent | b2ad132138071b611c66bb37b918d8f345eacc68 (diff) |
Revert "#261 Fixing the transition timing"
This reverts commit b27d525efcb8b48157c3659ef98109261841aa91.
-rw-r--r-- | web-ui/app/scss/styles.scss | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/web-ui/app/scss/styles.scss b/web-ui/app/scss/styles.scss index 983a1e92..67342c18 100644 --- a/web-ui/app/scss/styles.scss +++ b/web-ui/app/scss/styles.scss @@ -158,6 +158,7 @@ } &.selected { background: #FFF; + z-index: 2; a { color: #333; } @@ -253,20 +254,20 @@ section { border-right: 1px solid lighten($navigation_background, 10%); ul#default-tag-list, #custom-tag-list { li { - transition: background-color 0.15s, color 0s, z-index 0.15s; + transition: background-color 150ms ease-in-out; 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; } } |