diff options
author | raghunayyar <me@iraghu.com> | 2013-04-10 19:30:28 +0530 |
---|---|---|
committer | raghunayyar <me@iraghu.com> | 2013-04-10 19:30:28 +0530 |
commit | da882b1320477c981b0a0160275c0ad228f28526 (patch) | |
tree | f7789b26e44cbcf1129e95c4cd40dd4cafeec5e5 /core/css | |
parent | 000a568b4a7be9aa207e80480a667bd52c17891e (diff) | |
download | nextcloud-server-da882b1320477c981b0a0160275c0ad228f28526.tar.gz nextcloud-server-da882b1320477c981b0a0160275c0ad228f28526.zip |
The Opacity for the navigation loads fine for icon and App name.
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 7e81e702a91..d9f242da671 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -256,8 +256,11 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; } white-space:nowrap; overflow:hidden; text-overflow:ellipsis; /* ellipsize long app names */ } #navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } - #navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } - #navigation .icon { display:block; width:32px; height:32px; margin:0 16px 0; padding:8px 0 4px;} + #navigation a.active .icon, #navigation a.active span { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } + #navigation .icon { + display:block; width:32px; height:32px; margin:0 16px 0; padding:8px 0 4px; + -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; + } #navigation li:first-child a { padding-top:16px; } |