Fix select styling in ConverseJS.

This commit is contained in:
John Livingston
2024-05-13 10:40:22 +02:00
parent 74f238f555
commit 3d2c4b0d9d
2 changed files with 8 additions and 0 deletions

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;
}
}