mirror of
https://github.com/discourse/discourse.git
synced 2025-02-17 00:02:46 +08:00
![Joffrey JAFFEUX](/assets/img/avatar_default.png)
- Introduces ComponentConnector to use a component inside a widget - Use css to set size of components instead of properties - Smarted positionning - Style tweaks
40 lines
669 B
SCSS
40 lines
669 B
SCSS
.dropdown-select-box.dropdown-select-box {
|
|
&.is-expanded {
|
|
z-index: 9999;
|
|
}
|
|
|
|
.select-box-body {
|
|
border: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
}
|
|
|
|
.select-box-row {
|
|
margin: 0;
|
|
padding: 5px 10px;
|
|
|
|
&.is-highlighted {
|
|
background: none;
|
|
}
|
|
|
|
&:hover {
|
|
background: $highlight-medium;
|
|
}
|
|
}
|
|
|
|
.dropdown-header {
|
|
padding: 0;
|
|
border: 0;
|
|
outline: 0;
|
|
justify-content: flex-start;
|
|
width: min-content;
|
|
background: none;
|
|
|
|
.btn {
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
display: inline-flex;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|