Wrap long space names (#9201)
This commit is contained in:
parent
27a7263965
commit
0e43f3c015
2 changed files with 9 additions and 0 deletions
|
@ -379,11 +379,16 @@ $activeBorderColor: $primary-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_SpacePanel_contextMenu {
|
.mx_SpacePanel_contextMenu {
|
||||||
|
max-width: 360px;
|
||||||
|
|
||||||
.mx_SpacePanel_contextMenu_header {
|
.mx_SpacePanel_contextMenu_header {
|
||||||
margin: 12px 16px 12px;
|
margin: 12px 16px 12px;
|
||||||
font-weight: $font-semi-bold;
|
font-weight: $font-semi-bold;
|
||||||
font-size: $font-15px;
|
font-size: $font-15px;
|
||||||
line-height: $font-18px;
|
line-height: $font-18px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_SpacePanel_iconHome::before {
|
.mx_SpacePanel_iconHome::before {
|
||||||
|
|
|
@ -177,6 +177,10 @@ $SpaceRoomViewInnerWidth: 428px;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue