diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 05:01:20 -0800 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 05:01:20 -0800 |
commit | c801b86bc2551edfb8aeff20a9dee35dd70fb949 (patch) | |
tree | 6b7027bdf63f7095e7aac96775f43079976841a3 /core | |
parent | 228a181d48f27123a97c612cd0f686d92c05a235 (diff) | |
parent | b978cc8b288d3e05b6eb83b04215402665ed128b (diff) | |
download | nextcloud-server-c801b86bc2551edfb8aeff20a9dee35dd70fb949.tar.gz nextcloud-server-c801b86bc2551edfb8aeff20a9dee35dd70fb949.zip |
Merge pull request #1359 from raghunayyar/navigation
No Image Repetition on Enabling Apps in Navigation Bar
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 45fdee755fc..831c6c752ec 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -193,6 +193,11 @@ fieldset.warning legend { color:#b94a48 !important; } #navigation a:hover, #navigation a:focus { opacity:.8; } #navigation a.active { opacity:1; } #navigation .icon { display:block; width:32px; height:32px; margin:0 16px 0; } + #navigation .enabled-app:hover, #navigation .enabled-app:focus { opacity:1; } + #navigation .enabled-app img { opacity:0.3; cursor:pointer;} + #navigation .enabled-app a {padding:4px 0 4px; } + #navigation .enabled-app:hover a, #navigation .enabled-app:focus a {opacity:0.8; } + #navigation .enabled-app:hover img, #navigation .enabled-app:focus img {opacity:0.8; } #navigation li:first-child a { padding-top:16px; } #settings { float:right; margin-top:7px; color:#bbb; text-shadow:0 -1px 0 #000; } #expand { padding:15px; cursor:pointer; font-weight:bold; } @@ -204,6 +209,7 @@ fieldset.warning legend { color:#b94a48 !important; } #expanddiv a img { margin-bottom:-3px; } #expanddiv a:hover, #expanddiv a:focus, #expanddiv a:active { opacity:1; } + /* VARIOUS REUSABLE SELECTORS */ .hidden { display:none; } .bold { font-weight:bold; } |