mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
174d392e5a
Run `prettier --write "app/assets/stylesheets/**/*.scss" "plugins/**/*.scss"` after making sure you installed it with `yarn` It's recommended to configure your editor to run prettier on file save.
55 lines
1.0 KiB
SCSS
55 lines
1.0 KiB
SCSS
.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 0.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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|