Fix wide dropdown on small screens (#6982)

This commit is contained in:
Yuriy Bakhtin 2024-05-01 20:13:30 +02:00 committed by GitHub
parent a82007e5eb
commit f73803bdfe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 18 additions and 1 deletions

View File

@ -9,6 +9,7 @@ HumHub Changelog
- Fix #6919: Migration to revert user profile country names to Iso 3166 codes
- Fix #6966: Make "Invite new people" always possible for Admins
- Fix #6969: Create unique index for the table `like` - Avoid counter manipulation (Thanks to @viliald)
- Fix #6973: Fix wide dropdown on small screens
1.15.4 (March 20, 2024)
-----------------------

View File

@ -10,6 +10,14 @@
display: inline-block;
width: 14px;
}
@media (max-width: 400px) {
white-space: normal !important;
}
@media (max-width: 768px) {
small {
white-space: normal;
}
}
}
a:hover,

View File

@ -98,6 +98,14 @@
.ProseMirror-menu-dropdown, .ProseMirror-menu-dropdown-menu {
white-space: nowrap;
@media (max-width: 400px) {
white-space: normal !important;
}
@media (max-width: 768px) {
small {
white-space: normal;
}
}
}
.ProseMirror-menu-dropdown {

File diff suppressed because one or more lines are too long