mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
Add max-width to user menu and text-overflow: ellipsis
When implementing how to cut overflowing text, a white fade out was considered instead of an ellipsis, but that implementation brings additional complexity when considering the user menu's hover states. Therefore, the widely used `text-overflow: ellipsis` was used instead with approval from the designer [1] [1] https://phabricator.wikimedia.org/T287522#7255400 Bug: T287522 Change-Id: I49e6084bd621ca1637fbd167c8eaf8c07ee695ca
This commit is contained in:
parent
ddd46f74b1
commit
8c36871f1b
|
@ -68,6 +68,7 @@
|
|||
|
||||
.vector-menu-content {
|
||||
min-width: 200px;
|
||||
max-width: 350px;
|
||||
top: 100%;
|
||||
left: unset;
|
||||
right: 0;
|
||||
|
@ -111,6 +112,11 @@
|
|||
|
||||
span {
|
||||
font-size: @font-size-user-links;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
// Overrides .mw-ui-icon's `line-height: 0` property so that the text is
|
||||
// visible when not overflowing.
|
||||
line-height: initial;
|
||||
}
|
||||
|
||||
// Set hover color for "Create account" and "Login" menu items.
|
||||
|
|
Loading…
Reference in a new issue