discourse/app/assets/stylesheets/common/select-kit/multi-select.scss

173 lines
3.7 KiB
SCSS
Raw Normal View History

.select-box-kit, .select-kit {
&.multi-select {
2017-11-09 13:57:53 -05:00
width: 300px;
background: $secondary;
border-radius: 0;
.select-box-kit-body, .select-kit-body {
2017-11-09 13:57:53 -05:00
width: 100%;
}
.select-box-kit-row, .select-kit-row {
2017-11-09 13:57:53 -05:00
margin: 5px;
min-height: 1px;
padding: 5px;
border-radius: 0;
}
.select-box-kit-filter, .select-kit-filter {
2017-11-09 13:57:53 -05:00
border: 0;
}
.multi-select-header {
2017-11-09 13:57:53 -05:00
background: $secondary;
border: 1px solid $primary-medium;
2017-11-09 13:57:53 -05:00
&.is-focused {
box-shadow: $tertiary 0px 0px 6px 0px;
border-radius: 0;
}
}
&.is-disabled {
.multi-select-header {
2017-11-09 13:57:53 -05:00
background: #e9e9e9;
border-color: #ddd;
}
}
&.is-highlighted {
.multi-select-header {
2017-11-09 13:57:53 -05:00
border-radius: 0;
border-bottom: 1px solid transparent;
box-shadow: $tertiary 0px 0px 6px 0px;
}
}
&.is-expanded {
.select-box-kit-wrapper, .select-kit-wrapper {
2017-11-09 13:57:53 -05:00
display: block;
border: 1px solid $tertiary;
box-shadow: $tertiary 0px 0px 6px 0px;
border-radius: 0;
}
.multi-select-header {
2017-11-09 13:57:53 -05:00
border-radius: 0;
box-shadow: none;
}
.select-box-kit-body, .select-kit-body {
2017-11-09 13:57:53 -05:00
border-radius: 0;
}
}
.choices {
margin: 0;
padding: 2.5px;
2017-11-09 13:57:53 -05:00
box-sizing: border-box;
display: inline-flex;
justify-content: flex-start;
flex-wrap: wrap;
2017-11-09 13:57:53 -05:00
.choice {
2017-11-09 13:57:53 -05:00
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;
2017-11-09 13:57:53 -05:00
}
.filter {
align-items: center;
justify-content: flex-start;
white-space: nowrap;
min-width: 50px;
padding: 0;
outline: none;
2017-11-09 13:57:53 -05:00
.filter-input, .filter-input:focus {
2017-11-09 13:57:53 -05:00
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;
2017-11-09 13:57:53 -05:00
}
}
.selected-name {
align-items: center;
justify-content: flex-start;
color: $primary;
cursor: default;
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: normal;
overflow: auto;
2017-12-07 15:49:54 -05:00
flex: 0 1 auto;
flex-wrap: nowrap;
2017-11-09 13:57:53 -05:00
.name {
padding: 0 5px;
line-height: 18px;
2017-11-09 13:57:53 -05:00
}
&.is-highlighted {
box-shadow: 0 0 2px $danger, 0 1px 0 rgba(0,0,0,0.05);
2017-11-09 13:57:53 -05:00
}
.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: 14px;
&:hover {
color: $primary;
}
2017-11-09 13:57:53 -05:00
}
}
}
}
}
}