diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-08-06 10:58:59 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-08-10 14:12:34 +0200 |
commit | b142fbe6d731e761d0098c0e41e42396ee23e24c (patch) | |
tree | a85f214c9de4d0c8f4ff9debcad66635e4302ef4 /core/css | |
parent | 9454e9043a7b18108f14a00d6ab8afa62fb894af (diff) | |
download | nextcloud-server-b142fbe6d731e761d0098c0e41e42396ee23e24c.tar.gz nextcloud-server-b142fbe6d731e761d0098c0e41e42396ee23e24c.zip |
Added bubble style, applied to file actions menu
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/apps.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index 5769120c5ed..d4752cdde7e 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -292,8 +292,8 @@ list-style-type: none; } +.bubble, #app-navigation .app-navigation-entry-menu { - display: none; position: absolute; background-color: #eee; color: #333; @@ -310,11 +310,17 @@ 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, +.bubble:before, #app-navigation .app-navigation-entry-menu:after, #app-navigation .app-navigation-entry-menu:before { bottom: 100%; @@ -327,12 +333,15 @@ pointer-events: none; } +.bubble:after, #app-navigation .app-navigation-entry-menu:after { border-color: rgba(238, 238, 238, 0); border-bottom-color: #eee; border-width: 10px; margin-left: -10px; } + +.bubble:before, #app-navigation .app-navigation-entry-menu:before { border-color: rgba(187, 187, 187, 0); border-bottom-color: #bbb; |