mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
58 lines
1.1 KiB
SCSS
58 lines
1.1 KiB
SCSS
#reply-control .d-editor-button-bar .toolbar-popup-menu-options .btn.select-kit-header {
|
|
padding: 7px 8px;
|
|
height: auto;
|
|
}
|
|
|
|
.select-kit {
|
|
&.dropdown-select-box {
|
|
&.toolbar-popup-menu-options {
|
|
.select-kit-body {
|
|
box-shadow: none;
|
|
padding: 10px 10px 5px 10px;
|
|
width: 230px;
|
|
}
|
|
|
|
.select-kit-row {
|
|
border-radius: 4px;
|
|
margin-bottom: 5px;
|
|
padding: 6px 3px;
|
|
background: $primary-low;
|
|
transition: all .25s;
|
|
|
|
.name, .d-icon {
|
|
font-size: $font-0;
|
|
font-weight: normal;
|
|
color: $primary;
|
|
}
|
|
|
|
.d-icon {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
&.is-highlighted {
|
|
background: $primary-medium;
|
|
|
|
.name, .d-icon {
|
|
color: $secondary;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background: $primary-medium;
|
|
color: $secondary;
|
|
}
|
|
|
|
&.is-selected {
|
|
color: $primary;
|
|
background: $primary-low;
|
|
}
|
|
|
|
&.is-selected.is-highlighted {
|
|
background: $primary-medium;
|
|
color: $primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|