Merge pull request #15491 from Snuffleupagus/annotationLayer-input-hover-border

Set a `border-radius` when hovering annotationLayer-inputs (PR 15438 follow-up)
This commit is contained in:
Jonas Jenwald 2022-09-22 10:26:56 +02:00 committed by GitHub
commit 784ec3978a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,6 +135,12 @@
.annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
border: 2px solid var(--input-hover-border-color);
}
.annotationLayer .textWidgetAnnotation input:hover,
.annotationLayer .textWidgetAnnotation textarea:hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
border-radius: 2px;
}
.annotationLayer .textWidgetAnnotation input:focus,
.annotationLayer .textWidgetAnnotation textarea:focus,