diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 14:32:07 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 14:32:07 +0100 |
commit | cbafea4cc805093f34a6b46d3f1263860e1b5f3f (patch) | |
tree | e317f98361436df1d7ac4fc48b41c4d9a8bba910 | |
parent | 1144b61db30e42662a3b54228c6945dba507e807 (diff) | |
download | nextcloud-server-cbafea4cc805093f34a6b46d3f1263860e1b5f3f.tar.gz nextcloud-server-cbafea4cc805093f34a6b46d3f1263860e1b5f3f.zip |
increase opacity of inactive apps and settings entries for better visibility
-rw-r--r-- | core/css/styles.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index ede06bb548f..8eb67b2e723 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -193,7 +193,7 @@ fieldset.warning legend { color:#b94a48 !important; } #navigation a { display:block; padding:8px 0 4px; text-decoration:none; font-size:10px; text-align:center; - color:#fff; text-shadow:#000 0 -1px 0; opacity:.3; + color:#fff; text-shadow:#000 0 -1px 0; opacity:.4; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; // ellipsize long app names } #navigation a:hover, #navigation a:focus { opacity:.8; } @@ -208,10 +208,10 @@ fieldset.warning legend { color:#b94a48 !important; } #settings { float:right; margin-top:7px; color:#bbb; text-shadow:0 -1px 0 #000; } #expand { padding:15px; cursor:pointer; font-weight:bold; } #expand:hover, #expand:focus, #expand:active { color:#fff; } -#expand img { opacity:.5; margin-bottom:-2px; } +#expand img { opacity:.7; margin-bottom:-2px; } #expand:hover img, #expand:focus img, #expand:active img { opacity:1; } #expanddiv { position:absolute; right:0; top:45px; background-color:#444; border-bottom-left-radius:7px; box-shadow: 0 0 20px rgb(29,45,68); z-index:76; } - #expanddiv a { display:block; color:#fff; text-shadow:0 -1px 0 #000; padding:0 8px; opacity:.6; } + #expanddiv a { display:block; color:#fff; text-shadow:0 -1px 0 #000; padding:0 8px; opacity:.7; } #expanddiv a img { margin-bottom:-3px; } #expanddiv a:hover, #expanddiv a:focus, #expanddiv a:active { opacity:1; } |