Remove legacy room header (#1896)

This commit is contained in:
Michael Telatynski 2024-10-02 13:11:07 +01:00 committed by GitHub
parent 60550be905
commit acc5820823
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 8 deletions

View File

@ -53,8 +53,7 @@
"feature_spotlight": true, "feature_spotlight": true,
"feature_group_calls": true, "feature_group_calls": true,
"feature_video_rooms": true, "feature_video_rooms": true,
"feature_element_call_video_rooms": true, "feature_element_call_video_rooms": true
"feature_new_room_decoration_ui": true
}, },
"setting_defaults": { "setting_defaults": {
"RustCrypto.staged_rollout_percent": 100 "RustCrypto.staged_rollout_percent": 100

View File

@ -128,14 +128,9 @@ export function setupMacosTitleBar(window: BrowserWindow): void {
height: 24px; height: 24px;
} }
.mx_RoomView[data-room-header="new"]::before { .mx_RoomView::before {
height: 13px; height: 13px;
} }
.mx_RoomView[data-room-header="legacy"]::before {
height: 27px;
}
`); `);
} }