Improve style of DialogSidebar (of live location map) (#8760)

This commit is contained in:
Suguru Hirahara
2022-06-08 09:38:20 +01:00
committed by GitHub
parent 46f07a8edb
commit 8362174039
@@ -29,34 +29,29 @@ limitations under the License.
background-color: $background; background-color: $background;
box-shadow: 0px 4px 4px $menu-box-shadow-color; box-shadow: 0px 4px 4px $menu-box-shadow-color;
}
.mx_DialogSidebar_header { .mx_DialogSidebar_header {
display: flex; display: flex;
flex-direction: row; align-items: center;
align-items: center; justify-content: space-between;
justify-content: space-between;
flex: 0 0; flex: 0 0;
margin-bottom: $spacing-16; margin-bottom: $spacing-16;
color: $primary-content; color: $primary-content;
}
.mx_DialogSidebar_closeButton { .mx_DialogSidebar_closeButtonIcon {
@mixin ButtonResetDefault; color: $tertiary-content;
} height: 12px;
}
}
.mx_DialogSidebar_closeButtonIcon { .mx_DialogSidebar_list {
color: $tertiary-content; list-style: none;
height: 12px; padding: 0;
} margin: 0;
flex: 1 1 0;
.mx_DialogSidebar_list { width: 100%;
list-style: none; overflow: auto;
padding: 0; }
margin: 0;
flex: 1 1 0;
width: 100%;
overflow: auto;
} }