Browse Source
Fix long folder names in picker, prevent horizontal scroll
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
pull/11522/head
Jan-Christoph Borchardt
8 years ago
No known key found for this signature in database
GPG Key ID: CBD846FC845CBE17
3 changed files with
4 additions and
7 deletions
-
apps/files/css/files.scss
-
core/css/mobile.scss
-
core/css/styles.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, |
|
|
|
|
|
|
|
@ -123,7 +123,7 @@ |
|
|
|
display: none; |
|
|
|
} |
|
|
|
#oc-dialog-filepicker-content .filelist .filename { |
|
|
|
max-width: 80%; |
|
|
|
max-width: 100%; |
|
|
|
} |
|
|
|
|
|
|
|
.snapjs-left table.multiselect thead { |
|
|
|
|
|
|
|
@ -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); |
|
|
|
|