From aad19a2ce71ffb1795e36d2429d920b2c3e10ed7 Mon Sep 17 00:00:00 2001 From: vinceliuice Date: Tue, 25 Oct 2022 11:20:31 +0800 Subject: [PATCH] update --- .../gnome-shell/extensions-40-0/_misc.scss | 77 +++++++++++++++++++ src/sass/gtk/_common-4.0.scss | 5 ++ 2 files changed, 82 insertions(+) diff --git a/src/sass/gnome-shell/extensions-40-0/_misc.scss b/src/sass/gnome-shell/extensions-40-0/_misc.scss index cec95b98..4471ec23 100644 --- a/src/sass/gnome-shell/extensions-40-0/_misc.scss +++ b/src/sass/gnome-shell/extensions-40-0/_misc.scss @@ -52,3 +52,80 @@ &-sunset-icon, &-build-icon { color: $text-secondary; } } + +// +// Cosmic desktop (Pop_OS) +// + +.cosmic-application-dialog { + box-shadow: 0 3px 6px 0 rgba(black, 0.15); + background-color: $popover; + color: $text; + + .overview-icon { + color: $text; + } +} + +.cosmic-applications-separator { + background: $border; +} + +.cosmic-folder-edit-button { + box-shadow: none; + border-radius: $corner-radius; + border-width: 0; + color: $text; + background: $fill; + + .cosmic-folder-edit-button:hover { + background: $divider; + } +} + +.cosmic-applications-icon { + color: $text-secondary; +} + +.cosmic-applications-folder-title { + color: $text-secondary; +} + +.cosmic-applications-available { + color: $text; +} + +// pop-shell +.pop-shell-active-hint { + border-style: solid; + border-color: $warning; + border-radius: $corner-radius; + box-shadow: none; +} + +.pop-shell-overlay { + background-color: rgba($primary, 0.3); +} + +.pop-shell-search-element:select{ + background: $divider; + border-radius: $corner-radius; + color: $text; +} + +.pop-shell-tab { + border: 1px solid $border; + color: $text; +} + +.pop-shell-tab-active { + background: $warning; +} + +.pop-shell-tab-inactive { + background: rgba($warning, 0.35); +} + +.pop-shell-tab-urgent { + background: $error; +} \ No newline at end of file diff --git a/src/sass/gtk/_common-4.0.scss b/src/sass/gtk/_common-4.0.scss index 95a1fd5b..179e33ef 100644 --- a/src/sass/gtk/_common-4.0.scss +++ b/src/sass/gtk/_common-4.0.scss @@ -1728,6 +1728,11 @@ treeview.view { border-radius: 0; } + &:focus { + box-shadow: none; + outline: none; + } + &.separator { min-height: 1px + 2px * 2; color: $divider;