discourse/app/assets/stylesheets/common/select-kit/toolbar-popup-menu-options.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.1 KiB
SCSS
Raw Normal View History

.select-kit {
&.dropdown-select-box {
&.toolbar-popup-menu-options {
.select-kit-body {
box-shadow: none;
width: 230px;
border-radius: 0;
}
.select-kit-header {
width: 30px;
display: flex;
align-items: center;
justify-content: center;
&:focus {
border-color: var(--tertiary);
}
.d-icon {
color: var(--primary-medium);
}
&:hover {
.d-icon {
color: var(--primary-low);
}
}
}
.select-kit-row {
padding: 0.75em 0.5em;
border-bottom: 1px solid rgba(var(--primary-low-rgb), 0.5);
&:last-child {
border: none;
}
2020-02-15 02:44:38 +08:00
.texts .name,
.icons .d-icon {
2018-01-13 06:27:38 +08:00
font-size: $font-0;
font-weight: normal;
}
.d-icon {
color: var(--primary-medium);
}
&.is-highlighted,
&.is-selected,
&:hover {
background: var(--tertiary-low);
color: var(--primary);
}
}
}
}
}