Fixed Missing Space

Alluidh

Well-known member
Hi

Did something change in the Help menu between 1.1.5 and 1.2 Beta 5?
I miss some space in the menu :D

This ist 1.1.5
terms01.webp
And this is 1.2.0 Beta 5
terms02.webp

Please give us a "nowrap" ;)

Thanks a lot
 
A nowrap or other changes can be added via EXTRA.css. The help menu did change (along with any other menu that looks similiar: account, etc.) to account for some responsive features. It looks slightly thinner.
 
This is how I resolved it on my installation:
Code:
.navigationSideBar a.secondaryContent {
font-size: 12px;
}
 
We have, in theory, several options here:
From what I see there is no space left for a nowrap, hyphenation only happens when it's set to do so, the ellipsis makes the text shorter but do users still understand what "Nutzungsbedin…" means?
The hyphenation would be my ideal solution but it lacks browser support.
So it should be left bold but the font-size shouldn't change, that will fix it.

Maybe a combination of both, hyphenation and font size?
 
This is a general purpose thing - we generally choose to force a break if it can't fit into the allowed space rather than overflowing. In this case, I'm switching it to use text-overflow ellipsis. This only triggers if a specific word is too big. If that's not acceptable, it can be worked around by inserting a naturally wrappable character into the phrase, for example.
 
Top Bottom