quickSettings: Add header to QuickToggleMenu

All menus in the mockups spot a header, and as we are using a
custom menu type anyway, just add some API there.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2393>
This commit is contained in:
Florian Müllner
2022-07-29 23:41:33 +02:00
committed by Marge Bot
parent e0c61f53f1
commit a0436d4b48
2 changed files with 82 additions and 0 deletions

View File

@@ -24,6 +24,27 @@
.quick-toggle-menu {
@include card();
padding: 1.5 * $base_padding;
& .header {
spacing-rows: 0.5 * $base_padding;
spacing-columns: $base_padding;
padding-bottom: 2 * $base_padding;
& .icon {
icon-size: $large_icon_size;
border-radius: 999px;
padding: 1.5 * $base_padding;
background-color: lighten($bg_color, 10%);
}
& .title {
@extend %title_3;
}
& .subtitle {
@extend %caption_heading;
}
}
}
.quick-toggle-menu-container {