discourse/app/assets/stylesheets/common/select-kit/toolbar-popup-menu-options.scss
Jarek Radosz ea326906e3
DEV: Use css var font sizes (#18518)
For consistency and and the ability to change all font sizes at once in the dev tools
2022-10-12 15:31:59 +02:00

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);
}
}
}
}
}