#1171: Fix nowrap in textareas

This commit is contained in:
Fabrice Mouhartem 2023-10-18 18:35:43 +02:00 committed by Fabrice Mouhartem
parent 53ad4f5a25
commit bbb4a46e0f
1 changed files with 3 additions and 1 deletions

View File

@ -197,7 +197,9 @@
background-color: @cp_dropdown-bg-hover; background-color: @cp_dropdown-bg-hover;
} }
.tui-full-calendar-content { .tui-full-calendar-content {
white-space: nowrap; &:not(textarea) {
white-space: nowrap;
}
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
font: @colortheme_app-font; font: @colortheme_app-font;