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;
}
#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,

View file

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

View file

@ -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);