diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-18 17:04:21 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-18 17:47:10 +0200 |
commit | 16af12e0a045c6bf19cbd7ba8a012e4145065c29 (patch) | |
tree | 71b1e03348049e5cb87155374f8fb88c3735ff17 /core | |
parent | 38b1020f52dfefa6e025eb2de4512ab6b3d7ec48 (diff) | |
download | nextcloud-server-16af12e0a045c6bf19cbd7ba8a012e4145065c29.tar.gz nextcloud-server-16af12e0a045c6bf19cbd7ba8a012e4145065c29.zip |
Fixed webpack config, groups flex thanks to @juliushaertl and groups tooltip
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/inputs.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 7866fd66151..665deca2285 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -673,7 +673,7 @@ input { } /* selected tag */ .multiselect__tag { - flex: 1 0 calc(50% - 5px);; + flex: 1 0 0; line-height: 20px; padding: 1px 5px; background-image: none; @@ -685,6 +685,9 @@ input { /* require to override the default width and force the tag to shring properly */ min-width: 0; + max-width: 50%; + max-width: fit-content; + max-width: -moz-fit-content; /* css hack, detect if more than two tags if so, flex-basis is set to half */ &:only-child { |