diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-01 21:23:10 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-01 21:23:10 +0200 |
commit | 3b7c6e7dfdce6bf2f79236368b409bf71b453dd7 (patch) | |
tree | ac282ec4b5e9f647b4bbeff2980e272edd78eab0 /core/css/styles.scss | |
parent | 5ed00620024368792acb4f9930ddf837e26a0495 (diff) | |
download | nextcloud-server-3b7c6e7dfdce6bf2f79236368b409bf71b453dd7.tar.gz nextcloud-server-3b7c6e7dfdce6bf2f79236368b409bf71b453dd7.zip |
Fix long folder names in picker, prevent horizontal scroll
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/css/styles.scss')
-rw-r--r-- | core/css/styles.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 1cedb7108b4..dc217fb8f22 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -727,8 +727,9 @@ code { display: inline-block; overflow-y: auto; height: 100%; - /** overflow under the button row */ + /* overflow under the button row */ width: 100%; + overflow-x: hidden; } .emptycontent { color: var(--color-text-details); |