32 lines
1.0 KiB
CSS
32 lines
1.0 KiB
CSS
@layer vuetify-components {
|
|
.v-file-input--hide.v-input .v-field,
|
|
.v-file-input--hide.v-input .v-input__control,
|
|
.v-file-input--hide.v-input .v-input__details {
|
|
display: none;
|
|
}
|
|
.v-file-input--hide.v-input .v-input__prepend {
|
|
grid-area: control;
|
|
margin: 0 auto;
|
|
}
|
|
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
top: 0px;
|
|
}
|
|
.v-file-input .v-field__input {
|
|
word-break: break-word;
|
|
}
|
|
.v-file-input input[type=file] {
|
|
height: 100%;
|
|
left: 0;
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 0;
|
|
}
|
|
.v-file-input--dragging input[type=file] {
|
|
z-index: 1;
|
|
}
|
|
} |