compose: Fix the red outline in invalid state in dark theme.

In dark theme, the selector for the outline was the wrong element, so a
double, misplaced outline would show up.
This commit is contained in:
N-Shar-ma
2024-06-29 03:02:03 +05:30
committed by Tim Abbott
parent 104c76c18b
commit 5a740d4fbb

View File

@@ -306,9 +306,9 @@
} }
} }
& textarea.new_message_textarea { #message-content-container {
&.invalid, &:has(textarea.new_message_textarea.invalid),
&.invalid:focus { &:has(textarea.new_message_textarea.invalid:focus) {
border-color: hsl(3deg 73% 74%); border-color: hsl(3deg 73% 74%);
box-shadow: 0 0 2px hsl(3deg 73% 74%); box-shadow: 0 0 2px hsl(3deg 73% 74%);
} }