Fix ConverseJS input borders/outline/shadow. (#311)

This commit is contained in:
John Livingston 2024-02-08 11:33:43 +01:00
parent 7b8c961faf
commit 99f01014b2
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
2 changed files with 14 additions and 1 deletions

View File

@ -5,7 +5,8 @@
### Minor changes and fixes
* Fix #311:
* Fix inconsistency between browsers on textarea outlines
* Fix inconsistency between browsers on textarea outlines.
* Fix ConverseJS input borders/outline/shadow.
## 8.1.0

View File

@ -85,6 +85,18 @@
}
}
.form-control {
/* Cancelling some bootstrap stuff */
border-color: var(--chatroom-head-bg-color);
box-shadow: none;
&:focus {
border-color: var(--chatroom-head-bg-color);
outline: 2px solid var(--chatroom-head-bg-color);
box-shadow: none;
}
}
.chatroom .box-flyout .chatroom-body .chatroom-form-container {
background-color: var(--peertube-main-background);
}