From c4e2781acc42f281265a70d6cd75616cdd6fa762 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Fri, 10 Mar 2023 17:11:59 +0200 Subject: [PATCH] Input: Add no-wrap for chips and min-width for search-input --- less/input.less | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/less/input.less b/less/input.less index ccc82c0..b8d2d8d 100644 --- a/less/input.less +++ b/less/input.less @@ -118,8 +118,22 @@ } } - & .uk-grid .input { - min-height: 27px; + & .uk-grid { + & .search-input { + min-width: 250px; + + & > .input { + min-height: 27px; + } + } + + &.uk-flex-nowrap { + scrollbar-width: none; + + &::-webkit-scrollbar { + display: none; + } + } } & .icon { @@ -141,9 +155,9 @@ font-size: var(--input-font-size); } - & .uk-grid .input, + &:not(.static) .uk-grid .input, & .uk-grid-margin .input, - & .uk-grid .more, + &:not(.static) .uk-grid .more, &:not(.static) .chip, & .uk-grid-margin.chip { margin-top: 10px;