vuetify
Version:
Vue Material Component Framework
71 lines • 2.23 kB
CSS
@layer vuetify-components {
.v-select--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
.v-select--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
.v-select--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
.v-select--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
top: 0px;
}
.v-select .v-field .v-text-field__prefix,
.v-select .v-field .v-text-field__suffix,
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
cursor: pointer;
}
.v-select .v-field .v-field__input > input {
align-self: flex-start;
opacity: 1;
flex: 0 0;
position: absolute;
left: 0;
right: 0;
width: 100%;
transition: none;
pointer-events: none;
caret-color: transparent;
padding-inline: inherit;
}
.v-select .v-field--dirty .v-select__selection {
margin-inline-end: 2px;
}
.v-select .v-select__selection-text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.v-select__content {
overflow: hidden;
}
.v-select__content {
box-shadow: 0px 1px 2px 0px rgba(var(--v-shadow-color), var(--v-shadow-key-opacity, 0.3)), 0px 2px 6px 2px rgba(var(--v-shadow-color), var(--v-shadow-ambient-opacity, 0.15));
--v-elevation-overlay: color-mix(in srgb, var(--v-elevation-overlay-color) 4%, transparent);
}
.v-menu > .v-overlay__content.v-select__content {
border-radius: 4px;
}
.v-select__content > .v-sheet {
display: flex;
flex-direction: column;
}
.v-select__mask {
background: rgb(var(--v-theme-surface-light));
}
.v-select__selection {
display: inline-flex;
align-items: center;
letter-spacing: inherit;
line-height: inherit;
max-width: 100%;
}
.v-select .v-select__selection:first-child {
margin-inline-start: 0;
}
.v-select--selected .v-field .v-field__input > input {
opacity: 0;
}
.v-select__menu-icon {
margin-inline-start: 4px;
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.v-select--active-menu .v-select__menu-icon {
transform: rotate(180deg);
}
}