mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
c48761c628
Definitely remove legacy naming.
205 lines
4.3 KiB
SCSS
205 lines
4.3 KiB
SCSS
.select-kit {
|
|
&.multi-select {
|
|
width: 300px;
|
|
background: $secondary;
|
|
border-radius: 0;
|
|
|
|
.select-kit-body {
|
|
width: 100%;
|
|
}
|
|
|
|
.select-kit-row {
|
|
margin: 5px;
|
|
min-height: 1px;
|
|
padding: 5px;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.select-kit-filter {
|
|
border: 0;
|
|
}
|
|
|
|
.multi-select-header {
|
|
background: $secondary;
|
|
border: 1px solid $primary-medium;
|
|
|
|
&.is-focused {
|
|
box-shadow: $tertiary 0 0 6px 0px;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
&.is-disabled {
|
|
.multi-select-header {
|
|
background: #e9e9e9;
|
|
border-color: #ddd;
|
|
}
|
|
}
|
|
|
|
&.is-highlighted {
|
|
.multi-select-header {
|
|
border-radius: 0;
|
|
border-bottom: 1px solid transparent;
|
|
box-shadow: $tertiary 0 0 6px 0px;
|
|
}
|
|
}
|
|
|
|
&.is-expanded {
|
|
.select-kit-wrapper {
|
|
display: block;
|
|
border: 1px solid $tertiary;
|
|
box-shadow: $tertiary 0 0 6px 0px;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.multi-select-header {
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.select-kit-body {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
.choices {
|
|
margin: 0;
|
|
padding: 2.5px;
|
|
box-sizing: border-box;
|
|
display: inline-flex;
|
|
justify-content: flex-start;
|
|
flex-wrap: wrap;
|
|
|
|
.choice {
|
|
display: inline-flex;
|
|
box-sizing: border-box;
|
|
padding: 0 5px;
|
|
border: 1px solid transparent;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
margin: 2.5px;
|
|
}
|
|
|
|
.filter {
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
white-space: nowrap;
|
|
min-width: 50px;
|
|
padding: 0;
|
|
outline: none;
|
|
|
|
.filter-input, .filter-input:focus {
|
|
border: none;
|
|
background: none;
|
|
display: inline-block;
|
|
width: 100%;
|
|
outline: none;
|
|
min-width: auto;
|
|
padding: 0;
|
|
margin: 0;
|
|
outline: 0;
|
|
border: 0;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
height: 21px;
|
|
}
|
|
}
|
|
|
|
.selected-color {
|
|
.selected-color-wrapper {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.color-preview {
|
|
height: 5px;
|
|
margin: 0 2px 2px 2px;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.selected-name {
|
|
color: $primary;
|
|
border: 1px solid $primary-medium;
|
|
border-radius: 3px;
|
|
box-shadow: 0 0 2px $secondary inset, 0 1px 0 rgba(0,0,0,0.05);
|
|
background-clip: padding-box;
|
|
-webkit-touch-callout: none;
|
|
user-select: none;
|
|
background-color: $primary-low;
|
|
cursor: pointer;
|
|
outline: none;
|
|
line-height: $line-height-medium;
|
|
overflow: hidden;
|
|
flex: 0 1 auto;
|
|
flex-wrap: nowrap;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.footer {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.body {
|
|
width: 100%;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
|
|
.locked-icon, .delete-icon {
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: inline-flex;
|
|
height: 21px;
|
|
width: 21px;
|
|
|
|
.d-icon {
|
|
color: $primary-medium;
|
|
cursor: pointer;
|
|
font-size: 1em;
|
|
margin: 0;
|
|
|
|
&:hover {
|
|
color: $primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.name {
|
|
padding: 0 5px;
|
|
line-height: $line-height-medium;
|
|
}
|
|
|
|
&.is-highlighted {
|
|
box-shadow: 0 0 2px $danger, 0 1px 0 rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.locked-icon, .delete-icon {
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 21px;
|
|
height: 21px;
|
|
display: inline-flex;
|
|
.d-icon {
|
|
color: $primary-medium;
|
|
cursor: pointer;
|
|
font-size: $font-0;
|
|
|
|
&:hover {
|
|
color: $primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|