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
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-12-31 12:25:38 +0300
committerJulius Härtl <jus@bitgrid.net>2019-12-31 12:35:11 +0300
commit99a450c9dd42b7461a2e62bce969cfe97cc889c5 (patch)
tree6abab24a619e820998cb2139f62c869d1397334a /core/css/header.scss
parent9e7f52d225c00873300d5966c68c896caa09cde3 (diff)
Move scroll container to inner element
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/css/header.scss')
-rw-r--r--core/css/header.scss20
1 files changed, 15 insertions, 5 deletions
diff --git a/core/css/header.scss b/core/css/header.scss
index 62ed3e38178..b352f12e1b6 100644
--- a/core/css/header.scss
+++ b/core/css/header.scss
@@ -75,6 +75,11 @@
}
}
+@mixin header-menu-height() {
+ min-height: calc(44px * 1.5); // show at least 1.5 entries
+ max-height: calc(100vh - #{$header-height} * 2);
+}
+
#header {
/* Header menu */
$header-menu-entry-height: 44px;
@@ -88,13 +93,10 @@
z-index: 2000;
position: absolute;
max-width: 350px;
- min-height: calc(44px * 1.5); // show at least 1.5 entries
- max-height: calc(100vh - #{$header-height} * 2);
+ @include header-menu-height();
right: 5px; // relative to parent
top: $header-height;
margin: 0;
- overflow-y: scroll;
- -webkit-overflow-scrolling: touch;
&:not(.popovermenu) {
display: none;
@@ -113,9 +115,17 @@
right: 10px;
}
+ #apps > ul,
+ & > div,
+ & > ul {
+ overflow-y: auto;
+ -webkit-overflow-scrolling: touch;
+ @include header-menu-height();
+ }
+
/* Use by the apps menu and the settings right menu */
#apps > ul,
- &.settings-menu {
+ &.settings-menu > ul {
li {
a {
display: inline-flex;