2020-08-19 11:26:11 +02:00
|
|
|
/* Notifications & Message Tray */
|
2019-12-18 16:25:03 -05:00
|
|
|
|
|
|
|
$notification_banner_height: 64px;
|
|
|
|
$notification_banner_width: 34em;
|
2021-12-28 10:16:54 -03:30
|
|
|
|
2019-12-18 16:25:03 -05:00
|
|
|
// Banner notifications
|
|
|
|
.notification-banner {
|
2019-12-19 10:38:27 -05:00
|
|
|
min-height: $notification_banner_height;
|
|
|
|
width: $notification_banner_width;
|
2022-04-26 15:49:41 -02:30
|
|
|
box-shadow: 0 2px 4px 2px $shadow_color;
|
2023-07-18 11:01:02 -02:30
|
|
|
border-radius: $modal_radius;
|
2021-12-28 10:16:54 -03:30
|
|
|
margin: $base_margin;
|
2019-12-19 10:38:27 -05:00
|
|
|
|
2024-01-08 14:05:09 -03:30
|
|
|
@if $contrast == 'high' {
|
2024-01-10 22:21:11 -03:30
|
|
|
@include draw_hc_inset();
|
2023-12-22 11:17:27 -03:30
|
|
|
}
|
|
|
|
|
2019-12-19 10:38:27 -05:00
|
|
|
.notification-actions {
|
|
|
|
spacing: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-button {
|
|
|
|
@extend %bubble_button;
|
|
|
|
}
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|