Move backdrop filter to a canvas based solution

This commit is contained in:
Germain Souquet 2021-06-24 17:51:11 +01:00
parent f0ad70f0e7
commit 27ee7c5836
9 changed files with 129 additions and 49 deletions

View file

@ -43,7 +43,6 @@ $roomListCollapsedWidth: 68px;
// Note: The 'room list' in this context is actually everything that isn't the tag
// panel, such as the menu options, breadcrumbs, filtering, etc
.mx_LeftPanel_roomListContainer {
background-color: $roomlist-bg-color;
flex: 1 0 0;
min-width: 0;
// Create another flexbox (this time a column) for the room list components

View file

@ -35,6 +35,16 @@ limitations under the License.
height: 100%;
}
.mx_BackdropPanel {
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
z-index: 0;
opacity: .15;
}
.mx_MatrixToolbar {
order: 1;

View file

@ -27,6 +27,7 @@ $activeBorderColor: $secondary-fg-color;
background-color: $groupFilterPanel-bg-color;
padding: 0;
margin: 0;
position: relative;
// Create another flexbox so the Panel fills the container
display: flex;