![Julian Sparber](/assets/img/avatar_default.png)
Since we also want to show the buttons in the calendar move the code to add buttons/actions from `MessageTray.NotificationBanner` to `Calendar.NotificationMessage`. As nothing uses custom buttons that aren't backed by actions anymore, remove that bit of the public API. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7099 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3173>
26 lines
494 B
SCSS
26 lines
494 B
SCSS
/* Notifications & Message Tray */
|
|
|
|
$notification_banner_height: 64px;
|
|
$notification_banner_width: 34em;
|
|
|
|
// Banner notifications
|
|
.notification-banner {
|
|
min-height: $notification_banner_height;
|
|
width: $notification_banner_width;
|
|
box-shadow: 0 2px 4px 2px $shadow_color;
|
|
border-radius: $modal_radius;
|
|
margin: $base_margin;
|
|
|
|
@if $contrast == 'high' {
|
|
@include draw_hc_inset();
|
|
}
|
|
}
|
|
|
|
.notification-buttons-bin {
|
|
spacing: 0;
|
|
}
|
|
|
|
.notification-button {
|
|
@extend %bubble_button;
|
|
}
|