2018-02-06 01:25:39 +08:00
|
|
|
.select-kit {
|
2020-09-21 19:32:46 +08:00
|
|
|
@include unselectable;
|
2017-11-27 00:21:39 +08:00
|
|
|
border: none;
|
2018-05-02 08:41:28 +08:00
|
|
|
box-sizing: border-box;
|
2017-08-26 01:56:57 +08:00
|
|
|
display: inline-block;
|
2018-05-02 08:41:28 +08:00
|
|
|
flex-direction: column;
|
2017-08-13 20:34:50 +08:00
|
|
|
position: relative;
|
2017-10-20 03:51:08 +08:00
|
|
|
vertical-align: middle;
|
2017-08-13 20:34:50 +08:00
|
|
|
|
2021-08-23 16:44:19 +08:00
|
|
|
&.is-hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
> summary {
|
|
|
|
list-style-type: none;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: none !important;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> summary::marker {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
&.is-disabled {
|
|
|
|
pointer-events: none;
|
2017-08-30 23:04:17 +08:00
|
|
|
}
|
|
|
|
|
2017-08-13 20:34:50 +08:00
|
|
|
&.is-expanded {
|
2018-01-17 08:05:12 +08:00
|
|
|
z-index: z("dropdown");
|
2017-08-13 20:34:50 +08:00
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
.select-kit-body {
|
2017-08-13 20:34:50 +08:00
|
|
|
display: flex;
|
2018-05-02 08:41:28 +08:00
|
|
|
flex-direction: column;
|
2020-02-03 21:22:14 +08:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-08-23 16:44:19 +08:00
|
|
|
border-radius: 0;
|
|
|
|
border: none;
|
|
|
|
border: 1px solid var(--primary-low);
|
|
|
|
box-shadow: shadow("dropdown");
|
|
|
|
background: var(--secondary);
|
2022-09-21 10:59:47 +08:00
|
|
|
max-width: 600px;
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
2017-08-24 22:04:47 +08:00
|
|
|
|
2018-01-25 22:53:36 +08:00
|
|
|
.select-kit-collection {
|
2020-02-13 03:14:36 +08:00
|
|
|
box-sizing: border-box;
|
2020-02-03 21:22:14 +08:00
|
|
|
width: 100%;
|
2017-08-24 22:04:47 +08:00
|
|
|
}
|
2021-08-23 16:44:19 +08:00
|
|
|
|
|
|
|
.select-kit-filter.is-expanded {
|
|
|
|
padding: 0.25em 0.5em;
|
|
|
|
}
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
&.is-loading {
|
|
|
|
.select-kit-collection {
|
|
|
|
overflow: hidden;
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
2020-02-03 21:22:14 +08:00
|
|
|
}
|
2017-08-13 20:34:50 +08:00
|
|
|
|
|
|
|
.d-icon {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-high);
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-header {
|
2021-09-09 23:01:56 +08:00
|
|
|
@include form-item-sizing;
|
|
|
|
font-weight: 500;
|
2017-11-10 02:57:53 +08:00
|
|
|
overflow: hidden;
|
2018-06-08 17:49:31 +08:00
|
|
|
transition: all 0.25s;
|
2017-08-13 20:34:50 +08:00
|
|
|
cursor: pointer;
|
2021-08-24 01:57:42 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: stretch;
|
2021-09-09 23:01:56 +08:00
|
|
|
&:not(.btn) {
|
2022-11-17 00:35:09 +08:00
|
|
|
border-radius: var(--d-input-border-radius);
|
2021-09-09 23:01:56 +08:00
|
|
|
padding-left: 0.5em;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
}
|
2021-08-23 16:44:19 +08:00
|
|
|
|
2021-08-24 03:42:11 +08:00
|
|
|
/* hide native indicator */
|
|
|
|
&::-webkit-details-marker {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-08-23 16:44:19 +08:00
|
|
|
.select-kit-header-wrapper {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
2021-08-24 01:57:42 +08:00
|
|
|
align-items: center;
|
2021-09-10 21:00:41 +08:00
|
|
|
width: 100%;
|
2021-08-23 16:44:19 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
|
2020-05-23 12:56:13 +08:00
|
|
|
.d-icon-spinner {
|
|
|
|
-webkit-animation: rotate-forever 1s infinite linear;
|
|
|
|
animation: rotate-forever 1s infinite linear;
|
|
|
|
}
|
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
.selected-name {
|
2017-09-06 22:58:00 +08:00
|
|
|
text-align: left;
|
2018-11-15 23:08:27 +08:00
|
|
|
flex: 0 1 auto;
|
2020-06-13 05:07:50 +08:00
|
|
|
align-items: center;
|
2017-09-06 22:58:00 +08:00
|
|
|
color: inherit;
|
2020-02-03 21:22:14 +08:00
|
|
|
display: flex;
|
2020-05-15 23:36:00 +08:00
|
|
|
outline: none;
|
2020-02-03 21:22:14 +08:00
|
|
|
|
2021-02-16 01:22:10 +08:00
|
|
|
&:focus .d-icon-times {
|
|
|
|
color: var(--danger);
|
|
|
|
}
|
|
|
|
|
2020-02-05 07:41:10 +08:00
|
|
|
.d-icon + .name {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
2019-12-18 22:25:42 +08:00
|
|
|
.name {
|
|
|
|
display: inline-block;
|
2020-03-28 04:06:40 +08:00
|
|
|
> .d-icon {
|
2020-03-13 21:36:04 +08:00
|
|
|
margin-left: 0.5em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2020-02-03 21:22:14 +08:00
|
|
|
}
|
|
|
|
|
2020-03-28 04:06:40 +08:00
|
|
|
> .d-icon {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
&.select-kit-selected-color {
|
|
|
|
border-bottom-width: 5px;
|
|
|
|
border-bottom-style: solid;
|
2019-12-18 22:25:42 +08:00
|
|
|
}
|
2021-10-05 05:05:31 +08:00
|
|
|
|
|
|
|
.badge-wrapper {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
2017-09-06 22:58:00 +08:00
|
|
|
}
|
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
.btn-clear {
|
2020-02-06 15:30:26 +08:00
|
|
|
margin-left: 0.25em;
|
2020-02-03 21:22:14 +08:00
|
|
|
padding: 0.25em;
|
2017-10-20 03:51:08 +08:00
|
|
|
border: 0;
|
|
|
|
background: none;
|
2020-02-03 21:22:14 +08:00
|
|
|
min-height: auto;
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
|
2017-09-06 22:58:00 +08:00
|
|
|
.icon {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.caret-icon {
|
2019-01-23 01:33:46 +08:00
|
|
|
margin-left: auto;
|
2020-05-18 16:50:33 +08:00
|
|
|
margin-right: 0;
|
2019-01-23 01:33:46 +08:00
|
|
|
padding-left: 5px;
|
2017-09-06 22:58:00 +08:00
|
|
|
pointer-events: none;
|
2020-04-22 19:10:02 +08:00
|
|
|
color: inherit;
|
2017-09-06 22:58:00 +08:00
|
|
|
}
|
2017-09-12 01:14:22 +08:00
|
|
|
|
|
|
|
.d-button-label {
|
|
|
|
display: flex;
|
2018-05-02 08:41:28 +08:00
|
|
|
align-items: center;
|
2017-09-12 01:14:22 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2022-10-12 22:05:42 +08:00
|
|
|
line-height: var(--line-height-medium);
|
2017-09-12 01:14:22 +08:00
|
|
|
|
|
|
|
.d-icon {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-body {
|
2017-08-13 20:34:50 +08:00
|
|
|
display: none;
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--secondary);
|
2018-05-02 08:41:28 +08:00
|
|
|
box-sizing: border-box;
|
2021-09-14 22:49:43 +08:00
|
|
|
|
|
|
|
.selected-content {
|
|
|
|
max-height: 300px;
|
2021-09-28 22:36:16 +08:00
|
|
|
overflow-y: auto;
|
2021-09-14 22:49:43 +08:00
|
|
|
}
|
2022-06-07 16:57:10 +08:00
|
|
|
|
|
|
|
&[data-popper-reference-hidden] {
|
2022-08-26 20:52:04 +08:00
|
|
|
html:not(.ios-device) & {
|
|
|
|
visibility: hidden;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2022-06-07 16:57:10 +08:00
|
|
|
}
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-row {
|
2017-08-13 20:34:50 +08:00
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
display: flex;
|
2018-01-24 23:42:13 +08:00
|
|
|
flex: 1 0 auto;
|
2018-05-02 08:41:28 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
2021-08-23 16:44:19 +08:00
|
|
|
padding: 0.5em;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2017-09-06 22:58:00 +08:00
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
.name {
|
2017-09-06 22:58:00 +08:00
|
|
|
margin: 0;
|
2017-10-20 03:51:08 +08:00
|
|
|
overflow: hidden;
|
2018-05-02 08:41:28 +08:00
|
|
|
text-overflow: ellipsis;
|
2018-11-13 01:21:54 +08:00
|
|
|
flex: 1 1 0%;
|
2017-09-06 22:58:00 +08:00
|
|
|
}
|
|
|
|
|
2020-02-05 07:41:10 +08:00
|
|
|
.d-icon + .name,
|
|
|
|
.svg-icon-title + .name {
|
|
|
|
margin-left: 0.5em;
|
2017-09-06 22:58:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.is-highlighted {
|
2023-02-17 14:29:26 +08:00
|
|
|
background: var(--d-hover);
|
2017-09-06 22:58:00 +08:00
|
|
|
}
|
|
|
|
|
2017-09-11 01:12:03 +08:00
|
|
|
&.is-selected {
|
2023-02-17 14:29:26 +08:00
|
|
|
background: var(--d-selected);
|
2017-09-06 22:58:00 +08:00
|
|
|
}
|
2017-09-11 01:12:03 +08:00
|
|
|
|
|
|
|
&.is-selected.is-highlighted {
|
2023-02-17 14:29:26 +08:00
|
|
|
background: var(--d-hover);
|
2017-09-11 01:12:03 +08:00
|
|
|
}
|
2018-04-09 23:51:09 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.discourse-tag,
|
2020-12-08 01:10:21 +08:00
|
|
|
.discourse-tag:visited,
|
2021-01-19 04:11:23 +08:00
|
|
|
.discourse-tag:hover {
|
2020-12-08 01:10:21 +08:00
|
|
|
color: var(--primary-high);
|
2018-04-09 23:51:09 +08:00
|
|
|
}
|
2020-02-03 21:22:14 +08:00
|
|
|
|
|
|
|
&.create-color-row {
|
|
|
|
border-left-style: solid;
|
|
|
|
border-left-width: 5px;
|
|
|
|
}
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-collection {
|
2017-08-13 20:34:50 +08:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2017-10-20 03:51:08 +08:00
|
|
|
margin: 0;
|
2020-05-29 17:11:28 +08:00
|
|
|
max-height: 250px;
|
2020-02-03 21:22:14 +08:00
|
|
|
width: 100%;
|
2017-09-06 22:58:00 +08:00
|
|
|
|
2021-08-23 16:44:19 +08:00
|
|
|
&:hover .select-kit-row.is-highlighted:hover {
|
2023-02-17 14:29:26 +08:00
|
|
|
background: var(--d-hover);
|
2021-08-23 16:44:19 +08:00
|
|
|
}
|
|
|
|
|
2018-04-05 22:45:19 +08:00
|
|
|
.validation-message {
|
|
|
|
white-space: nowrap;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--danger);
|
2018-04-05 22:45:19 +08:00
|
|
|
flex: 1 0 auto;
|
|
|
|
margin: 5px;
|
|
|
|
padding: 0 2px;
|
|
|
|
}
|
|
|
|
|
2017-09-06 22:58:00 +08:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 5px;
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--primary-med-or-secondary-med);
|
2017-09-06 22:58:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
|
background: transparent;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
|
|
|
|
2018-02-06 01:25:39 +08:00
|
|
|
.select-kit-filter {
|
2017-11-27 00:21:39 +08:00
|
|
|
box-sizing: border-box;
|
2018-05-02 08:41:28 +08:00
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2020-02-03 21:22:14 +08:00
|
|
|
width: 100%;
|
2017-09-06 22:58:00 +08:00
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
.filter-input {
|
2017-09-06 22:58:00 +08:00
|
|
|
background: none;
|
|
|
|
margin: 0;
|
2017-10-20 03:51:08 +08:00
|
|
|
padding: 0;
|
2019-01-22 02:40:55 +08:00
|
|
|
flex: 1 0 0px;
|
2017-09-06 22:58:00 +08:00
|
|
|
outline: none;
|
|
|
|
border: 0;
|
2017-10-20 03:51:08 +08:00
|
|
|
border-radius: 0;
|
2018-05-02 08:41:28 +08:00
|
|
|
box-shadow: none;
|
2021-08-23 16:44:19 +08:00
|
|
|
width: 100%;
|
2021-08-24 01:57:42 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
min-height: 30px;
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.is-hidden {
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
border: 0;
|
2017-11-12 04:16:00 +08:00
|
|
|
margin: -1px;
|
2017-10-20 03:51:08 +08:00
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
position: fixed;
|
|
|
|
outline: 0;
|
2018-01-25 22:53:36 +08:00
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2017-09-06 22:58:00 +08:00
|
|
|
}
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
.select-kit-errors-collection {
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--danger);
|
2020-02-03 21:22:14 +08:00
|
|
|
padding: 0.25em 1em;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
.select-kit-error {
|
|
|
|
list-style: none;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--secondary);
|
2020-02-03 21:22:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-content,
|
2021-08-23 16:44:19 +08:00
|
|
|
.is-loading,
|
|
|
|
.results-count {
|
2020-02-03 21:22:14 +08:00
|
|
|
display: flex;
|
|
|
|
flex: 1 0 auto;
|
|
|
|
padding: 0.5em;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--secondary);
|
2020-02-03 21:22:14 +08:00
|
|
|
}
|
|
|
|
|
2021-08-23 16:44:19 +08:00
|
|
|
.results-count {
|
|
|
|
font-size: var(--font-down-1);
|
|
|
|
color: var(--primary-med-or-secondary-med);
|
|
|
|
position: absolute;
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
clip-path: inset(50%);
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
width: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
.is-loading {
|
2021-08-23 16:44:19 +08:00
|
|
|
align-items: flex-start;
|
2020-02-03 21:22:14 +08:00
|
|
|
justify-content: center;
|
|
|
|
}
|
2017-08-13 20:34:50 +08:00
|
|
|
}
|