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

Fix buttons on the room header being compressed due to long room name #10155

Merged
merged 8 commits into from
Mar 1, 2023
1 change: 1 addition & 0 deletions res/css/structures/_RightPanel.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ limitations under the License.
align-items: center;
}

/* See: mx_RoomHeader_button */
luixxiul marked this conversation as resolved.
Show resolved Hide resolved
.mx_RightPanel_headerButton {
cursor: pointer;
flex: 0 0 auto;
Expand Down
5 changes: 3 additions & 2 deletions res/css/views/rooms/_RoomHeader.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,13 @@ limitations under the License.
}

.mx_RoomHeader_button {
position: relative;
cursor: pointer;
flex: 0 0 auto;
margin-left: 1px;
margin-right: 1px;
cursor: pointer;
height: 32px;
width: 32px;
position: relative;
border-radius: 100%;

&::before {
Expand Down