diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-01 21:19:48 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-01 21:19:48 +0200 |
commit | 5ed00620024368792acb4f9930ddf837e26a0495 (patch) | |
tree | 62140c1bafc9ab8249a2968662601617efbbb4c6 | |
parent | c2a956f55e74fde2efde9e807d37bd8ff1c76b5b (diff) | |
download | nextcloud-server-5ed00620024368792acb4f9930ddf837e26a0495.tar.gz nextcloud-server-5ed00620024368792acb4f9930ddf837e26a0495.zip |
Fix breadcrumbs in file picker
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r-- | core/css/styles.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 2d6df4c3932..1cedb7108b4 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -700,8 +700,10 @@ code { #oc-dialog-filepicker-content { .dirtree { - width: 92%; + width: 96%; flex-wrap: wrap; + padding-left: 12px; + div:first-child a { background-image: url('../img/places/home.svg?v=1'); background-repeat: no-repeat; @@ -1007,6 +1009,9 @@ div.crumb { white-space: nowrap; overflow: hidden; flex: 0 0 auto; + // Some sane max-width for each folder name + max-width: 200px; + &.icon-home { // Hide home text text-indent: -9999px; |