mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 17:36:49 +01:00
eac5e0bc2c
Co-authored-by: LB Johnston <mail@lb.ee>
42 lines
1.0 KiB
SCSS
42 lines
1.0 KiB
SCSS
@use 'sass:map';
|
||
@use 'sass:math';
|
||
|
||
$select-size: $text-input-height;
|
||
$chevron-width: 1rem;
|
||
$chevron-height: 0.5rem;
|
||
$chevron-top-offset: math.div($select-size - $chevron-height, 2);
|
||
$chevron-inline-end-offset: math.div($select-size - $chevron-width, 2);
|
||
|
||
@mixin select-arrow() {
|
||
background-image: url('#{$images-root}icons/chevron-down.svg');
|
||
background-repeat: no-repeat;
|
||
background-size: $chevron-width;
|
||
background-position-x: calc(100% - $chevron-inline-end-offset);
|
||
background-position-y: $chevron-top-offset;
|
||
}
|
||
|
||
select {
|
||
@include input-base();
|
||
@include select-arrow();
|
||
@apply w-body-text-large;
|
||
// Firefox workaround – Set a large line height (but smaller than min height) so the field’s text has enough top padding.
|
||
line-height: 2.2;
|
||
min-height: $select-size;
|
||
padding: 0 theme('spacing.5');
|
||
padding-inline-end: $select-size;
|
||
|
||
@media (forced-colors: active) {
|
||
appearance: auto;
|
||
}
|
||
}
|
||
|
||
select[multiple] {
|
||
background-image: none;
|
||
min-height: theme('spacing.40');
|
||
padding: 0;
|
||
|
||
option {
|
||
padding: 0 theme('spacing.5');
|
||
}
|
||
}
|