fix css for disabled input

This commit is contained in:
2023-04-26 17:54:16 +10:00
parent 24e80d7851
commit 656de567d7

View File

@@ -730,4 +730,18 @@ const handleMediaSelect = async () => {
} }
} }
} }
@media (prefers-color-scheme: dark) {
.control-group.control-type-input {
.control-row {
.control-item {
.input-control {
&:disabled {
background-color: hsl(0, 0%, 8%);
}
}
}
}
}
}
</style> </style>