mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:26:29 +08:00
ea326906e3
For consistency and and the ability to change all font sizes at once in the dev tools
42 lines
798 B
SCSS
42 lines
798 B
SCSS
.select-kit {
|
|
&.dropdown-select-box {
|
|
&.toolbar-popup-menu-options {
|
|
.select-kit-collection {
|
|
max-height: 35vh;
|
|
}
|
|
|
|
.select-kit-body {
|
|
box-shadow: none;
|
|
width: 230px;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.select-kit-row {
|
|
padding: 0.75em 0.5em;
|
|
border-bottom: 1px solid rgba(var(--primary-low-rgb), 0.5);
|
|
|
|
&:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.texts .name,
|
|
.icons .d-icon {
|
|
font-size: var(--font-0);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.d-icon {
|
|
color: var(--primary-medium);
|
|
}
|
|
|
|
&.is-highlighted,
|
|
&.is-selected,
|
|
&:hover {
|
|
background: var(--tertiary-low);
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|