Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Set max-width to user context menu #8089

Merged
merged 1 commit into from
Mar 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions res/css/structures/_UserMenu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,13 @@ limitations under the License.
}
}

.mx_UserMenu_contextMenu {
width: 258px;
.mx_IconizedContextMenu {
&.mx_UserMenu_contextMenu {
width: 258px;
}
}

.mx_UserMenu_contextMenu {
&.mx_IconizedContextMenu .mx_IconizedContextMenu_optionList_red {
.mx_AccessibleButton {
padding-top: 16px;
Expand All @@ -87,25 +91,26 @@ limitations under the License.
flex-direction: column;
width: calc(100% - 40px); // 40px = 32px theme button + 8px margin to theme button

* {
// Automatically grow all subelements to fit the container
.mx_UserMenu_contextMenu_displayName,
.mx_UserMenu_contextMenu_userId {
font-size: $font-15px;

// Automatically grow subelements to fit the container
flex: 1;
width: 100%;

// Ellipsize any text overflow
// Ellipsize text overflow
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

.mx_UserMenu_contextMenu_displayName {
font-weight: bold;
font-size: $font-15px;
line-height: $font-20px;
}

.mx_UserMenu_contextMenu_userId {
font-size: $font-15px;
line-height: $font-24px;
}
}
Expand Down