diff options
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 { |