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:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-30 13:02:45 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-30 13:48:24 +0300
commit2be323d19506c9efa7218cdd6fcd30901a006039 (patch)
tree5f758eefd4676f5c551389bdcd58111171f2fe33 /core/css/mobile.scss
parent3de1eb480e6b19ea8fbff39ff9a129f09404c277 (diff)
Mobile scroll fixes
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css/mobile.scss')
-rw-r--r--core/css/mobile.scss6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/css/mobile.scss b/core/css/mobile.scss
index 13fa2eea9d2..6330be9d399 100644
--- a/core/css/mobile.scss
+++ b/core/css/mobile.scss
@@ -37,12 +37,14 @@
.app-content-list {
background: var(--color-main-background);
flex: 1 1 100%;
- + .app-content-detail {
+ // make full height scroll since app-content-details is hidden
+ max-height: unset;
+ + .app-content-details {
display: none;
}
&.showdetails {
display: none;
- + .app-content-detail {
+ + .app-content-details {
display: initial;
}
}