Fix select styling in ConverseJS.

This commit is contained in:
John Livingston 2024-05-13 10:40:22 +02:00
parent 74f238f555
commit 3d2c4b0d9d
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
2 changed files with 8 additions and 0 deletions

View File

@ -5,6 +5,7 @@
### Minor changes and fixes
* Fix missing titles on some buttons when the chat is open.
* Fix select styling in ConverseJS.
## 9.0.2

View File

@ -173,4 +173,11 @@ body.converse-embedded {
textarea:read-only {
background-color: var(--chat-textarea-disabled-bg-color) !important;
}
select.form-control {
// Peertube uses a trick to display a triangle as dropdown icon for selects.
// But this tricks breaks selects that are not in a .peertube-select-container.
// So we must revert appearance:
appearance: revert !important;
}
}