diff --git a/CHANGELOG.md b/CHANGELOG.md index d37eead0..999dd8d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/conversejs/custom/shared/styles/livechat.scss b/conversejs/custom/shared/styles/livechat.scss index 2f464b8c..9cce5c92 100644 --- a/conversejs/custom/shared/styles/livechat.scss +++ b/conversejs/custom/shared/styles/livechat.scss @@ -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; + } }