![Sam Hewitt](/assets/img/avatar_default.png)
- 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>
134 lines
2.9 KiB
SCSS
134 lines
2.9 KiB
SCSS
/* Looking Glass */
|
|
|
|
// Dialog
|
|
#LookingGlassDialog {
|
|
background-color: $osd_bg_color;
|
|
border-radius: 0 0 $base_border_radius $base_border_radius;
|
|
border-top-width: 0;
|
|
border: 1px solid $osd_outer_borders_color;
|
|
color: $osd_fg_color;
|
|
padding: $base_padding;
|
|
spacing: $base_spacing;
|
|
|
|
& > #Toolbar {
|
|
border: none;
|
|
padding: $base_padding;
|
|
border-radius: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.labels {
|
|
spacing: $base_spacing;
|
|
}
|
|
|
|
.notebook-tab {
|
|
-natural-hpadding: $base_padding*2;
|
|
-minimum-hpadding: $base_padding*2;
|
|
|
|
font-weight: bold;
|
|
padding: $base_padding $base_padding*2;
|
|
color: darken($osd_fg_color, 15%);
|
|
transition-duration: 100ms;
|
|
box-shadow:none;
|
|
border:none;
|
|
border-radius: $base_border_radius - 2px;
|
|
background-color: transparent;
|
|
|
|
&:hover {
|
|
color: $osd_fg_color;
|
|
background-color: transparentize($osd_fg_color, 0.95);
|
|
}
|
|
|
|
&:selected {
|
|
color: $osd_fg_color;
|
|
background-color: transparentize($osd_fg_color, 0.9);
|
|
}
|
|
}
|
|
|
|
StBoxLayout#EvalBox { padding: 4px; spacing: $base_spacing; padding: $base_padding; }
|
|
StBoxLayout#ResultsArea { spacing: $base_spacing; padding: $base_padding; }
|
|
}
|
|
|
|
.lg-dialog {
|
|
|
|
StEntry {
|
|
background-color: transparentize(lighten($osd_bg_color, 5%), 0.4);
|
|
color: $osd_fg_color;
|
|
border-color: transparentize($osd_fg_color, 0.8);
|
|
min-height: 22px;
|
|
selection-background-color: $selected_bg_color;
|
|
selected-color: $selected_fg_color;
|
|
}
|
|
|
|
.shell-link {
|
|
color: $link_color;
|
|
&:hover { color: lighten($link_color, 10%); }
|
|
&:active { color: darken($link_color, 10%); }
|
|
}
|
|
|
|
.actor-link {
|
|
color: $insensitive_fg_color;
|
|
&:hover { color: lighten($insensitive_fg_color, 20%); }
|
|
&:active { color: darken($insensitive_fg_color, 20%); }
|
|
}
|
|
}
|
|
|
|
.lg-completions-text {
|
|
font-size: .9em;
|
|
font-style: italic;
|
|
}
|
|
|
|
.lg-obj-inspector-title {
|
|
spacing: $base_spacing;
|
|
}
|
|
|
|
.lg-obj-inspector-button {
|
|
border: 1px solid $osd_borders_color;
|
|
padding: 4px;
|
|
border-radius: $base_border_radius;
|
|
&:hover { border: 1px solid #ffffff; }
|
|
}
|
|
|
|
// Extensions
|
|
#lookingGlassExtensions { padding: $base_padding; }
|
|
|
|
.lg-extensions-list {
|
|
padding: $base_padding;
|
|
spacing: $base_spacing;
|
|
}
|
|
|
|
.lg-extension {
|
|
padding: $base_padding*2;
|
|
@include notification_bubble;
|
|
}
|
|
|
|
.lg-extension-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.lg-extension-meta {
|
|
spacing: $base_spacing;
|
|
}
|
|
|
|
// Inspector
|
|
#LookingGlassPropertyInspector {
|
|
background: $osd_bg_color;
|
|
border: 1px solid $osd_borders_color;
|
|
border-radius: $base_border_radius;
|
|
padding: $base_padding;
|
|
}
|
|
|
|
.lg-debug-flag-button {
|
|
StLabel { padding: $base_spacing, 2 * $base_spacing; }
|
|
|
|
color: $fg_color;
|
|
&:hover { color: lighten($fg_color, 20%); }
|
|
&:active { color: darken($fg_color, 20%); }
|
|
}
|
|
|
|
.lg-debug-flags-header {
|
|
padding-top: 2 * $base_spacing;
|
|
font-size: 120%;
|
|
font-weight: bold;
|
|
padding: $base_padding;
|
|
} |