mirror of
https://github.com/humhub/humhub.git
synced 2025-04-22 16:11:55 +02:00
Fix wide dropdown on small screens (#6982)
This commit is contained in:
parent
a82007e5eb
commit
f73803bdfe
@ -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)
|
||||
-----------------------
|
||||
|
@ -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,
|
||||
|
@ -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
Loading…
x
Reference in New Issue
Block a user