mirror of
https://github.com/vinceliuice/Colloid-gtk-theme.git
synced 2025-09-16 13:28:38 -07:00
update
This commit is contained in:
@@ -3,33 +3,43 @@
|
|||||||
// Dialog
|
// Dialog
|
||||||
#LookingGlassDialog {
|
#LookingGlassDialog {
|
||||||
background-color: $base;
|
background-color: $base;
|
||||||
spacing: 4px;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
spacing: $base_padding;
|
||||||
border-radius: $base_radius;
|
margin: $base_padding;
|
||||||
|
border-radius: $window_radius;
|
||||||
box-shadow: 0 3px 8px 0 rgba(black, 0.25);
|
box-shadow: 0 3px 8px 0 rgba(black, 0.25);
|
||||||
color: $text;
|
color: $text;
|
||||||
|
|
||||||
|
@if $rimless == 'false' {
|
||||||
|
border: 1px solid $window-border;
|
||||||
|
} @else { border: none; }
|
||||||
|
|
||||||
& > #Toolbar {
|
& > #Toolbar {
|
||||||
padding: 0 8px;
|
padding: 0 $base_padding;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: $window_radius $window_radius 0 0;
|
||||||
background-color: $background;
|
background-color: $fill;
|
||||||
box-shadow: inset 0 -1px 0 $border;
|
box-shadow: inset 0 -1px 0 $border;
|
||||||
|
spacing: $base_padding;
|
||||||
|
}
|
||||||
|
|
||||||
|
.labels {
|
||||||
|
spacing: $base_padding;
|
||||||
}
|
}
|
||||||
|
|
||||||
.labels { spacing: 0; }
|
|
||||||
.notebook-tab {
|
.notebook-tab {
|
||||||
-natural-hpadding: 12px;
|
-natural-hpadding: $base_padding*2;
|
||||||
-minimum-hpadding: 6px;
|
-minimum-hpadding: $base_padding*2;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: $text-disabled;
|
color: $text-disabled;
|
||||||
padding-left: 16px;
|
padding-left: 16px;
|
||||||
padding-right: 16px;
|
padding-right: 16px;
|
||||||
min-height: $item_size;
|
min-height: $item_size;
|
||||||
padding: 0 32px;
|
padding: $base_padding / 2 $base_padding * 5;
|
||||||
transition-duration: 100ms;
|
transition-duration: 100ms;
|
||||||
border-bottom-width: 0;
|
border: none;
|
||||||
|
background-color: transparent;
|
||||||
|
border-radius: 0;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: $fill;
|
background-color: $fill;
|
||||||
@@ -45,8 +55,9 @@
|
|||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
StBoxLayout#EvalBox { padding: 4px; spacing: 4px; }
|
|
||||||
StBoxLayout#ResultsArea { spacing: 4px; }
|
StBoxLayout#EvalBox { padding: 4px; spacing: $base_padding; padding: $base_padding; }
|
||||||
|
StBoxLayout#ResultsArea { spacing: $base_padding; padding: $base_padding; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.lg-dialog {
|
.lg-dialog {
|
||||||
@@ -55,25 +66,31 @@
|
|||||||
selection-background-color: $primary;
|
selection-background-color: $primary;
|
||||||
selected-color: on($primary);
|
selected-color: on($primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.shell-link {
|
.shell-link {
|
||||||
color: $link;
|
color: $link;
|
||||||
&:hover { color: lighten($link, 10%); }
|
&:hover { color: lighten($link, 10%); }
|
||||||
&:active { color: darken($link, 10%); }
|
&:active { color: darken($link, 10%); }
|
||||||
}
|
}
|
||||||
|
|
||||||
.actor-link {
|
.actor-link {
|
||||||
color: $text-secondary;
|
color: $text-disabled;
|
||||||
&:hover { color: $text; }
|
&:hover { color: $text; }
|
||||||
&:active { color: $text-secondary; }
|
&:active { color: $text-secondary; }
|
||||||
|
|
||||||
|
& StIcon { icon-size: 12px; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.lg-completions-text {
|
.lg-completions-text {
|
||||||
font-size: .9em;
|
font-size: .9em;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
color: $text-secondary;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lg-obj-inspector-title {
|
.lg-obj-inspector-title {
|
||||||
spacing: $base_spacing;
|
spacing: $base_spacing;
|
||||||
|
color: $text-secondary;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lg-obj-inspector-button {
|
.lg-obj-inspector-button {
|
||||||
@@ -86,31 +103,47 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Extensions
|
// Extensions
|
||||||
#lookingGlassExtensions { padding: $base_padding; }
|
#lookingGlassExtensions {
|
||||||
|
padding: $base_padding;
|
||||||
|
color: $text-secondary;
|
||||||
|
}
|
||||||
|
|
||||||
.lg-extensions-list {
|
.lg-extensions-list {
|
||||||
padding: $base_padding;
|
padding: $base_padding;
|
||||||
spacing: $base_padding;
|
spacing: $base_padding;
|
||||||
|
color: $text-secondary;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lg-extension {
|
.lg-extension {
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: $base_radius;
|
border-radius: $base_radius;
|
||||||
background-color: $background;
|
background-color: $fill;
|
||||||
|
color: $text-secondary;
|
||||||
padding: $base_padding * 2;
|
padding: $base_padding * 2;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $text;
|
||||||
|
background-color: $divider;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
color: $text;
|
||||||
|
background-color: $track;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.lg-extension-name {
|
.lg-extension-name {
|
||||||
font-weight: bold;
|
@extend %heading;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lg-extension-meta {
|
.lg-extension-meta {
|
||||||
spacing: $base_spacing;
|
spacing: $base_spacing;
|
||||||
|
color: $text-secondary;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Inspector
|
// Inspector
|
||||||
#LookingGlassPropertyInspector {
|
#LookingGlassPropertyInspector {
|
||||||
color: $text_secondary;
|
color: $text-secondary;
|
||||||
background: $base;
|
background: $base;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: $base_radius;
|
border-radius: $base_radius;
|
||||||
@@ -118,3 +151,18 @@
|
|||||||
margin: 5px 8px 11px;
|
margin: 5px 8px 11px;
|
||||||
box-shadow: 0 3px 8px 0 rgba(black, 0.25);
|
box-shadow: 0 3px 8px 0 rgba(black, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.lg-debug-flag-button {
|
||||||
|
StLabel { padding: $base_padding, 2 * $base_padding; }
|
||||||
|
|
||||||
|
color: $text-secondary;
|
||||||
|
|
||||||
|
&:hover { color: $text; }
|
||||||
|
&:active { color: $text; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-debug-flags-header {
|
||||||
|
padding-top: 2 * $base_padding;
|
||||||
|
padding: $base_padding;
|
||||||
|
@extend %title_2;
|
||||||
|
}
|
Reference in New Issue
Block a user