Hide (or shrink) little drop down arrow in md-select #5337
Unanswered
benfredwells
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Does There should be a token for it. I think you should also be able to add an empty There is a link to all select tokens available in the select doc. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to hide the trailing icon / drop down arrow in md-outlined-select? Or at least minimize its width?
I'm trying to make selects take up less horizontal space. I've found a way to minimize most of the padding (see below and also overriding min-width on md-outlined-slider) but the arrow is still pretty wide.
--text-field-padding: 8px;
--md-outlined-field-bottom-space: var(--text-field-padding);
--md-outlined-field-leading-space: var(--text-field-padding);
--md-outlined-field-top-space: var(--text-field-padding);
--md-outlined-field-trailing-space: var(--text-field-padding);
--md-outlined-field-supporting-text-leading-space: var(--text-field-padding);
--md-outlined-field-supporting-text-trailing-space: var(--text-field-padding);
--md-outlined-select-text-field-container-shape: var(--text-field-padding);
--md-menu-container-shape: var(--text-field-padding);
Beta Was this translation helpful? Give feedback.
All reactions