Spaces:
Sleeping
Sleeping
File size: 825 Bytes
622f49f 7b70c21 2f6976b 7b70c21 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | input:disabled {
color: transparent !important;
}
/* Hide dropdown selected text */
.Select.is-disabled .Select-value-label {
color: transparent !important;
}
/* Hide selected value AND placeholder when the dropdown is disabled */
.Select.is-disabled .Select-value,
.Select.is-disabled .Select-value-label,
.Select.is-disabled .Select-placeholder {
color: transparent !important;
}
/* Some versions keep layout space; this fully removes the text nodes */
.Select.is-disabled .Select-value,
.Select.is-disabled .Select-placeholder {
display: none !important;
}
.Select__control--is-disabled .Select__single-value,
.Select__control--is-disabled .Select__placeholder {
color: transparent !important;
display: none !important;
}
.Select.is-disabled .Select-control {
background-color: #f5f5f5 !important;
} |