Fix long folder names in picker, prevent horizontal scroll
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
5ed0062002
commit
3b7c6e7dfd
3 changed files with 4 additions and 7 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue