Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-04-14 21:25:46 +0400
committerkondou <kondou@ts.unde.re>2013-04-17 21:44:07 +0400
commit4e11814a0ca55e87aff9b60e8a64431219a4ff74 (patch)
tree98586c2cd8d63a135f73a82afa56dcd79413c021 /core
parent32667f8c384722098ea6c9978f7dc90923d2599d (diff)
fix navigation hover effect, documentation
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css13
1 files changed, 8 insertions, 5 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 8dbf5cf698a..11c5b1a1519 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -262,19 +262,22 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; }
-moz-box-shadow:0 0 7px #000; -webkit-box-shadow:0 0 7px #000; box-shadow:0 0 7px #000;
overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box;
}
-#navigation:hover { overflow-y:auto; }
+#navigation:hover { overflow-y:auto; } /* show scrollbar only on hover */
#navigation a span {
display:block;
text-decoration:none; font-size:10px; text-align:center;
color:#fff; text-shadow:#000 0 -1px 0;
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5;
white-space:nowrap; overflow:hidden; text-overflow:ellipsis; /* ellipsize long app names */
}
+ /* icon opacity and hover effect */
+ #navigation a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; }
#navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; }
- #navigation a.active .icon, #navigation a.active span { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
+ #navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
+ /* positioning */
#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;
+ display:block;
+ width:32px; height:32px;
+ margin:0 16px 0; padding:8px 0 4px;
}
#navigation li:first-child a { padding-top:16px; }