Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/css')
-rw-r--r--apps/files_sharing/css/sharetabview.scss6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/files_sharing/css/sharetabview.scss b/apps/files_sharing/css/sharetabview.scss
index 2b649fe3727..14be9562228 100644
--- a/apps/files_sharing/css/sharetabview.scss
+++ b/apps/files_sharing/css/sharetabview.scss
@@ -168,6 +168,7 @@
margin-left: auto;
display: flex;
align-items: center;
+ white-space: nowrap;
// can edit label
> .shareOption > label {
padding: 13px;
@@ -196,12 +197,15 @@
}
.username {
padding: 0 8px;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
}
}
.ui-autocomplete {
/* limit dropdown height to 4 1/2 entries */
- max-height: 200px;
+ max-height: calc(36px * 4.5);;
overflow-y: auto;
overflow-x: hidden;
z-index: 1550 !important;