199529a67d
- updated switch assets - new high contrast assets - use non-hardcoded bg color for dash - updated palette colors - add missing color definitions to hc - increase radii of many elements - update search entry style - align icon better in search entry - restyle panel popovers without arrow and add drop shadow - used theme colors in panel - fix some things with popover labels - new slider style - some light variant fixes - fixes to the calendar popover - day with event styles - better calendar-today.svg and dark variant - shorten calendary weekday header - saner padding - overhaul popover menu style - minor fixes to app grid and alt-tab switch - updated looking glass styles - nm-dialog adjustments - search results adjustments - expand out panel button hover styles - button drawing adjustments - adjust notifications area - update on-screen keyboard style - better keyboard symbolic icon assets - change keyboard symbolic icons to 24px - improved keyboard style - gave the keyboard word suggestions some styles - less obnoxious saner media control buttons - cleaned up the css for the dash - reworked the alt-tab switcher style - sync style on workspace switcher - adjusted dialog button style drawing - popover submenu redrawing adjustement Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2104>
65 lines
1.6 KiB
SCSS
65 lines
1.6 KiB
SCSS
/* Notifications & Message Tray */
|
|
|
|
$notification_banner_height: 64px;
|
|
$notification_banner_width: 34em;
|
|
$notification_banner_radius: $base_border_radius*1.5;
|
|
|
|
// make radius of buttons fit in bubble corner (banner radius - width of focus ring)
|
|
$notification_button_radius: ($notification_banner_radius - 2px);
|
|
|
|
// Banner notifications
|
|
.notification-banner {
|
|
min-height: $notification_banner_height;
|
|
width: $notification_banner_width;
|
|
box-shadow: 0 2px 4px 2px rgba(0,0,0,0.1);
|
|
border-radius: $notification_banner_radius;
|
|
margin: $base_margin;
|
|
|
|
.notification-actions {
|
|
spacing: 0;
|
|
}
|
|
|
|
.notification-button {
|
|
@extend %bubble_button;
|
|
}
|
|
}
|
|
|
|
// counter
|
|
.summary-source-counter {
|
|
font-size: $base_font_size - 1pt;
|
|
font-weight: bold;
|
|
height: 1.6em;
|
|
width: 1.6em;
|
|
-shell-counter-overlap-x: 3px;
|
|
-shell-counter-overlap-y: 3px;
|
|
background-color: $selected_bg_color;
|
|
color: $selected_fg_color;
|
|
border: 2px solid $fg_color;
|
|
box-shadow: 0 2px 2px rgba(0,0,0,0.5);
|
|
border-radius: 0.9em; // should be 0.8 but whatever; wish I could do 50%;
|
|
}
|
|
|
|
// chat bubbles
|
|
.chat-body { spacing: 5px; }
|
|
.chat-response { margin: 5px; }
|
|
.chat-log-message { color: darken($fg_color,10%); }
|
|
.chat-new-group { padding-top: 1em; }
|
|
.chat-received {
|
|
padding-left: 4px;
|
|
&:rtl { padding-left: 0px; padding-right: 4px; }
|
|
}
|
|
|
|
.chat-sent {
|
|
padding-left: 18pt;
|
|
color: lighten($fg_color, 15%);
|
|
&:rtl { padding-left: 0; padding-right: 18pt; }
|
|
}
|
|
|
|
.chat-meta-message {
|
|
padding-left: 4px;
|
|
@include fontsize($base_font_size - 2);
|
|
font-weight: bold;
|
|
color: lighten($fg_color,18%);
|
|
&:rtl { padding-left: 0; padding-right: 4px; }
|
|
}
|