@@ -5,6 +5,7 @@
- #2716: Fix issue with chat display when opening via URL
- #3033: Add the `muc_grouped_by_domain` option to display MUCs on the same domain in collapsible groups
- Add an occupants filter to the MUC sidebar
+- #3307: Fix inconsistency between browsers on textarea outlines
### Breaking changes:
@@ -40,8 +40,9 @@
}
.chat-textarea, input {
+ outline: 1px solid var(--chat-head-color);
&:active, &:focus{
- outline-color: var(--chat-head-color);
+ outline-width: 2px;
&.correcting {
background-color: var(--chat-correcting-color);
@@ -31,8 +31,9 @@
bottom: 4.5em;
+ outline: 1px solid var(--chatroom-head-bg-color) !important;
- outline-color: var(--chatroom-head-bg-color) !important;
+ outline-width: 2px !important;
background-color: var(--chatroom-correcting-color);