diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-04-09 09:43:17 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-04-09 10:19:42 +0200 |
commit | 01389d395e6b258613f28a5df6d4f45c760ffe29 (patch) | |
tree | 9e127de606ad355746d11b4fab5c98b6b9e7e939 /core/css | |
parent | 1575bd838f2e938b18b04bcdcc28e2fc24d95c45 (diff) | |
download | nextcloud-server-01389d395e6b258613f28a5df6d4f45c760ffe29.tar.gz nextcloud-server-01389d395e6b258613f28a5df6d4f45c760ffe29.zip |
Fix systemtags overflow
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/systemtags.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/css/systemtags.scss b/core/css/systemtags.scss index e2b587fcc79..6e100b12a92 100644 --- a/core/css/systemtags.scss +++ b/core/css/systemtags.scss @@ -72,7 +72,12 @@ .systemTagsInfoView, .systemtags-select2-container { width: 100%; - + + .select2-choices { + flex-wrap: nowrap !important; + max-height: 44px; + } + .select2-choices .select2-search-choice.select2-locked .label { opacity: 0.5; } |