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

302 lines
5.3 KiB
SCSS

.select-kit {
@include unselectable;
border: none;
box-sizing: border-box;
display: inline-block;
flex-direction: column;
position: relative;
vertical-align: middle;
&.is-disabled {
pointer-events: none;
}
&.is-expanded {
z-index: z("dropdown");
.select-kit-body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.select-kit-collection {
border-radius: inherit;
box-sizing: border-box;
width: 100%;
}
}
&.is-loading {
.select-kit-collection {
overflow: hidden;
}
}
&.is-above {
.select-kit-filter {
border-top: 0;
}
.select-kit-wrapper {
bottom: 0;
top: auto;
}
}
.d-icon {
color: var(--primary-high);
}
.select-kit-header {
box-sizing: border-box;
overflow: hidden;
transition: all 0.25s;
cursor: pointer;
display: flex;
align-items: center;
flex-direction: row;
min-height: 30px;
.d-icon-spinner {
-webkit-animation: rotate-forever 1s infinite linear;
animation: rotate-forever 1s infinite linear;
}
.selected-name {
text-align: left;
flex: 0 1 auto;
align-items: center;
color: inherit;
display: flex;
outline: none;
&:focus .d-icon-times {
color: var(--danger);
}
.d-icon + .name {
margin-left: 0.5em;
}
.name {
display: inline-block;
> .d-icon {
margin-left: 0.5em;
margin-right: 0;
}
}
> .d-icon {
margin-right: 0;
}
&.select-kit-selected-color {
border-bottom-width: 5px;
border-bottom-style: solid;
}
}
.btn-clear {
margin-left: 0.25em;
padding: 0.25em;
border: 0;
background: none;
min-height: auto;
}
.icon {
margin-right: 5px;
}
.caret-icon {
margin-left: auto;
margin-right: 0;
padding-left: 5px;
pointer-events: none;
color: inherit;
}
.d-button-label {
display: flex;
align-items: center;
white-space: nowrap;
overflow: hidden;
line-height: $line-height-medium;
.d-icon {
margin-left: 5px;
margin-right: 0;
}
}
}
.select-kit-body {
display: none;
background: var(--secondary);
box-sizing: border-box;
}
.select-kit-row {
cursor: pointer;
outline: none;
display: flex;
flex: 1 0 auto;
box-sizing: border-box;
align-items: center;
justify-content: flex-start;
padding: 0.75em;
.name {
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
flex: 1 1 0%;
}
.d-icon + .name,
.svg-icon-title + .name {
margin-left: 0.5em;
}
&.is-highlighted {
background: var(--tertiary-low);
}
&.is-selected {
background: var(--highlight-medium);
}
&.is-selected.is-highlighted {
background: var(--tertiary-low);
}
.discourse-tag,
.discourse-tag:visited,
.discourse-tag:hover {
color: var(--primary-high);
}
&.create-color-row {
border-left-style: solid;
border-left-width: 5px;
}
}
.select-kit-collection {
background: var(--secondary);
overflow-x: hidden;
overflow-y: auto;
border-radius: inherit;
-webkit-overflow-scrolling: touch;
margin: 0;
padding: 0;
max-height: 250px;
width: 100%;
.validation-message {
white-space: nowrap;
color: var(--danger);
flex: 1 0 auto;
margin: 5px;
padding: 0 2px;
}
.select-kit-collection {
padding: 0;
margin: 0;
&:hover .select-kit-row.is-highlighted:hover {
background: var(--tertiary-low);
}
}
&::-webkit-scrollbar {
-webkit-appearance: none;
width: 10px;
}
&::-webkit-scrollbar-thumb {
cursor: pointer;
border-radius: 5px;
background: var(--primary-med-or-secondary-med);
}
&::-webkit-scrollbar-track {
background: transparent;
border-radius: 0;
}
}
.select-kit-filter {
box-sizing: border-box;
align-items: center;
justify-content: space-between;
width: 100%;
.filter-input {
background: none;
margin: 0;
padding: 0;
flex: 1 0 0px;
outline: none;
border: 0;
border-radius: 0;
box-shadow: none;
width: auto;
}
&.is-hidden {
width: 1px;
height: 1px;
border: 0;
margin: -1px;
padding: 0;
overflow: hidden;
position: fixed;
outline: 0;
left: 0;
top: 0;
}
}
.select-kit-wrapper {
position: absolute;
top: 0;
left: 0;
background: none;
display: none;
box-sizing: border-box;
pointer-events: none;
}
.select-kit-errors-collection {
background: var(--danger);
padding: 0.25em 1em;
margin: 0;
width: 100%;
box-sizing: border-box;
.select-kit-error {
list-style: none;
color: var(--secondary);
}
}
.no-content,
.is-loading {
display: flex;
flex: 1 0 auto;
padding: 0.5em;
width: 100%;
box-sizing: border-box;
background: var(--secondary);
}
.is-loading {
align-items: center;
justify-content: center;
}
}