Fix long folder names in picker, prevent horizontal scroll

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
pull/11522/head
Jan-Christoph Borchardt 7 years ago
parent 5ed0062002
commit 3b7c6e7dfd
No known key found for this signature in database
GPG Key ID: CBD846FC845CBE17
  1. 6
      apps/files/css/files.scss
  2. 2
      core/css/mobile.scss
  3. 3
      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);

Loading…
Cancel
Save