mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
44 lines
693 B
SCSS
44 lines
693 B
SCSS
.modal-inner-container .d-time-input,
|
|
.d-time-input {
|
|
display: inline-flex;
|
|
|
|
.combo-box {
|
|
width: 65px;
|
|
min-width: auto;
|
|
|
|
&:not(.has-selection) {
|
|
.select-kit-selected-name .name {
|
|
color: $primary-medium;
|
|
}
|
|
}
|
|
|
|
.select-kit-header {
|
|
.d-icon {
|
|
padding-left: 0;
|
|
}
|
|
|
|
&:focus {
|
|
outline: 1px solid $tertiary;
|
|
}
|
|
}
|
|
|
|
.select-kit-collection {
|
|
min-width: auto;
|
|
}
|
|
|
|
.select-kit-filter {
|
|
width: auto;
|
|
overflow: hidden;
|
|
.filter-input {
|
|
min-width: 0;
|
|
}
|
|
}
|
|
|
|
.selected-name {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|