2018-02-06 01:25:39 +08:00
|
|
|
.select-kit {
|
2017-10-20 03:51:08 +08:00
|
|
|
&.combo-box {
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-body {
|
2017-10-20 03:51:08 +08:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-row {
|
2017-10-20 03:51:08 +08:00
|
|
|
margin: 5px;
|
|
|
|
min-height: 1px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-filter {
|
2018-01-13 06:27:38 +08:00
|
|
|
line-height: $line-height-medium;
|
2017-11-28 04:23:18 +08:00
|
|
|
padding: 6px 10px;
|
2017-10-20 03:51:08 +08:00
|
|
|
border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
|
|
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
.filter-input {
|
2017-10-20 03:51:08 +08:00
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-header {
|
2017-10-20 03:51:08 +08:00
|
|
|
background: $secondary;
|
2017-11-28 04:23:18 +08:00
|
|
|
border: 1px solid $primary-medium;
|
2018-02-01 00:44:51 +08:00
|
|
|
padding: 4px 10px;
|
2017-10-20 03:51:08 +08:00
|
|
|
font-weight: 500;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-0;
|
2018-02-01 00:44:51 +08:00
|
|
|
line-height: $line-height-large;
|
2017-10-20 03:51:08 +08:00
|
|
|
|
|
|
|
&.is-focused {
|
|
|
|
border: 1px solid $tertiary;
|
2018-01-25 22:53:36 +08:00
|
|
|
-webkit-box-shadow: $tertiary 0 0 6px 0px;
|
|
|
|
box-shadow: $tertiary 0 0 6px 0px;
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-disabled {
|
2017-11-21 18:53:09 +08:00
|
|
|
.select-kit-header {
|
2017-10-20 03:51:08 +08:00
|
|
|
background: #e9e9e9;
|
|
|
|
border-color: #ddd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-highlighted {
|
2017-11-21 18:53:09 +08:00
|
|
|
.select-kit-header {
|
2017-10-20 03:51:08 +08:00
|
|
|
border: 1px solid $tertiary;
|
2018-01-25 22:53:36 +08:00
|
|
|
-webkit-box-shadow: $tertiary 0 0 6px 0px;
|
|
|
|
box-shadow: $tertiary 0 0 6px 0px;
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-expanded {
|
2017-11-21 18:53:09 +08:00
|
|
|
.select-kit-wrapper {
|
2017-10-20 03:51:08 +08:00
|
|
|
display: block;
|
|
|
|
border: 1px solid $tertiary;
|
2018-01-25 22:53:36 +08:00
|
|
|
-webkit-box-shadow: $tertiary 0 0 6px 0px;
|
|
|
|
box-shadow: $tertiary 0 0 6px 0px;
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
.select-kit-header {
|
2017-10-20 03:51:08 +08:00
|
|
|
border-color: transparent;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
.select-kit-body {
|
2017-11-27 00:21:39 +08:00
|
|
|
border-radius: 0 0 3px 3px ;
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-expanded.is-above {
|
2017-11-21 18:53:09 +08:00
|
|
|
.select-kit-header {
|
2017-10-20 03:51:08 +08:00
|
|
|
border-radius: 0 0 3px 3px;
|
|
|
|
}
|
2017-11-27 00:21:39 +08:00
|
|
|
|
|
|
|
.select-kit-body {
|
|
|
|
border-radius: 3px 3px 0 0;
|
|
|
|
}
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|