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 | |
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>
-rw-r--r-- | apps/files/css/files.scss | 6 | ||||
-rw-r--r-- | core/css/mobile.scss | 2 | ||||
-rw-r--r-- | core/css/styles.scss | 3 |
3 files changed, 4 insertions, 7 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index c41255b9868..bd57f1907f5 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -52,10 +52,6 @@ min-width: 500px; } -#filestable tbody tr { - height: 51px; -} - /* fit app list view heights */ .app-files #app-content>.viewcontainer { min-height: 0%; @@ -132,7 +128,7 @@ #filestable tbody tr { transition: background-color 0.3s ease; - height: 40px; + height: 51px; } #filestable tbody tr:hover, #filestable tbody tr:focus, diff --git a/core/css/mobile.scss b/core/css/mobile.scss index e4a4f53367b..f7f3827eba5 100644 --- a/core/css/mobile.scss +++ b/core/css/mobile.scss @@ -123,7 +123,7 @@ display: none; } #oc-dialog-filepicker-content .filelist .filename { - max-width: 80%; + max-width: 100%; } .snapjs-left table.multiselect thead { 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); |