Fix long folder names in picker, prevent horizontal scroll

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2018-10-01 21:23:10 +02:00
parent 5ed0062002
commit 3b7c6e7dfd
No known key found for this signature in database
GPG key ID: CBD846FC845CBE17
3 changed files with 4 additions and 7 deletions

View file

@ -52,10 +52,6 @@
min-width: 500px; min-width: 500px;
} }
#filestable tbody tr {
height: 51px;
}
/* fit app list view heights */ /* fit app list view heights */
.app-files #app-content>.viewcontainer { .app-files #app-content>.viewcontainer {
min-height: 0%; min-height: 0%;
@ -132,7 +128,7 @@
#filestable tbody tr { #filestable tbody tr {
transition: background-color 0.3s ease; transition: background-color 0.3s ease;
height: 40px; height: 51px;
} }
#filestable tbody tr:hover, #filestable tbody tr:hover,
#filestable tbody tr:focus, #filestable tbody tr:focus,

View file

@ -123,7 +123,7 @@
display: none; display: none;
} }
#oc-dialog-filepicker-content .filelist .filename { #oc-dialog-filepicker-content .filelist .filename {
max-width: 80%; max-width: 100%;
} }
.snapjs-left table.multiselect thead { .snapjs-left table.multiselect thead {

View file

@ -727,8 +727,9 @@ code {
display: inline-block; display: inline-block;
overflow-y: auto; overflow-y: auto;
height: 100%; height: 100%;
/** overflow under the button row */ /* overflow under the button row */
width: 100%; width: 100%;
overflow-x: hidden;
} }
.emptycontent { .emptycontent {
color: var(--color-text-details); color: var(--color-text-details);