summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-08-26 11:07:29 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-08-26 11:07:29 +0200
commitc11ea056d06be7859071eb3176462a9d4d56964e (patch)
tree854af785f50d59eec7241ef18e7f95b70940127c /core
parent898243a5ee9a4922a17934419717816a6dd427a0 (diff)
downloadnextcloud-server-c11ea056d06be7859071eb3176462a9d4d56964e.tar.gz
nextcloud-server-c11ea056d06be7859071eb3176462a9d4d56964e.zip
properly shade file actions and menu items, don't differentiate between mobile and desktop
Diffstat (limited to 'core')
-rw-r--r--core/css/apps.css30
1 files changed, 20 insertions, 10 deletions
diff --git a/core/css/apps.css b/core/css/apps.css
index ee0f7516b1f..17595479ae2 100644
--- a/core/css/apps.css
+++ b/core/css/apps.css
@@ -292,6 +292,7 @@
list-style-type: none;
}
+/* menu bubble / popover */
.bubble,
#app-navigation .app-navigation-entry-menu {
position: absolute;
@@ -308,15 +309,6 @@
-o-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
}
-
-#app-navigation .app-navigation-entry-menu {
- display: none;
-}
-
-#app-navigation .app-navigation-entry-menu.open {
- display: block;
-}
-
/* miraculous border arrow stuff */
.bubble:after,
#app-navigation .app-navigation-entry-menu:after {
@@ -329,7 +321,6 @@
position: absolute;
pointer-events: none;
}
-
.bubble:after,
#app-navigation .app-navigation-entry-menu:after {
border-color: rgba(238, 238, 238, 0);
@@ -337,6 +328,25 @@
border-width: 10px;
margin-left: -10px;
}
+.bubble .action {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)" !important;
+ filter: alpha(opacity=50) !important;
+ opacity: .5 !important;
+}
+.bubble .action:hover,
+.bubble .action:focus {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
+ filter: alpha(opacity=100) !important;
+ opacity: 1 !important;
+}
+
+#app-navigation .app-navigation-entry-menu {
+ display: none;
+}
+
+#app-navigation .app-navigation-entry-menu.open {
+ display: block;
+}
/* list of options for an entry */
#app-navigation .app-navigation-entry-menu ul {