style: change text color to red in datetime input with invalid scheduled time
This commit is contained in:
parent
4d6ecddcd0
commit
54632dbb4c
1 changed files with 5 additions and 1 deletions
|
|
@ -645,7 +645,7 @@ function stopQuestionMarkPropagation(e: KeyboardEvent) {
|
|||
color: var(--c-text-btn-disabled);
|
||||
}
|
||||
|
||||
.option-input:focus+.delete-button {
|
||||
.option-input:focus + .delete-button {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
|
@ -659,4 +659,8 @@ function stopQuestionMarkPropagation(e: KeyboardEvent) {
|
|||
align-items: center;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
input[name="schedule-datetime"]:invalid {
|
||||
color: var(--c-danger);
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue