mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 18:34:52 +08:00
14 lines
474 B
SCSS
14 lines
474 B
SCSS
|
.form-kit__control-select {
|
||
|
@include default-input;
|
||
|
|
||
|
padding: 0 2em 0 0.5em !important;
|
||
|
appearance: none;
|
||
|
background-image: svg-uri(
|
||
|
"<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$primary-medium}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m2 5 6 6 6-6'/></svg>"
|
||
|
);
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: right 0.5rem center;
|
||
|
background-size: 16px 12px;
|
||
|
cursor: pointer;
|
||
|
}
|