discourse/app/assets/stylesheets/common/select-kit/dropdown-select-box.scss

131 lines
3.3 KiB
SCSS
Raw Normal View History

.select-box-kit, .select-kit {
2017-10-19 15:51:08 -04:00
&.dropdown-select-box {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
min-width: auto;
border: none;
2017-10-19 15:51:08 -04:00
&.is-expanded {
.select-box-kit-collection,
.select-box-kit-body,
.select-kit-collection,
.select-kit-body {
2017-10-19 15:51:08 -04:00
border-radius: 0;
}
}
.select-box-kit-body, .select-kit-body {
2017-10-19 15:51:08 -04:00
border: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
background-clip: padding-box;
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.4);
box-shadow: 0 2px 2px rgba(0,0,0,0.4);
2017-10-19 15:51:08 -04:00
max-width: 300px;
width: 300px;
}
.select-box-kit-row, .select-kit-row {
2017-10-19 15:51:08 -04:00
margin: 0;
padding: 10px 5px;
.icons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-item-align: start;
align-self: flex-start;
margin-right: 10px;
margin-top: 2px;
width: 30px;
.d-icon {
2018-01-12 17:27:38 -05:00
font-size: $font-up-2;
2017-10-19 15:51:08 -04:00
-ms-flex-item-align: center;
align-self: center;
margin-right: 0;
opacity: 1;
}
}
.texts {
2018-01-12 17:27:38 -05:00
line-height: $line-height-large;
2017-10-19 15:51:08 -04:00
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
.name {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
font-weight: bold;
2018-01-12 17:27:38 -05:00
font-size: $font-0;
2017-10-19 15:51:08 -04:00
color: $primary;
padding: 0;
}
.desc {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
2017-10-19 15:51:08 -04:00
font-weight: normal;
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 40%));;
white-space: normal;
}
}
}
.select-box-kit-collection, .select-kit-collection {
2017-10-19 15:51:08 -04:00
padding: 0;
}
.dropdown-select-box-header {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
2017-10-19 15:51:08 -04:00
.d-icon + .d-icon {
margin-left: 5px;
}
&.is-focused {
outline-style: auto;
outline-color: $tertiary;
2017-10-19 15:51:08 -04:00
}
}
}
}