diff --git a/gnome-shell/_common.scss b/gnome-shell/_common.scss index a9e3eea..eaf1cbb 100644 --- a/gnome-shell/_common.scss +++ b/gnome-shell/_common.scss @@ -1379,6 +1379,10 @@ StScrollBar { spacing: 24px; // } +#overview.cosmic-solid-bg { + background-color: $base_color !important; +} + .overview-controls { padding-bottom: 32px; } diff --git a/gnome-shell/_cosmic.scss b/gnome-shell/_cosmic.scss new file mode 100644 index 0000000..eb320c5 --- /dev/null +++ b/gnome-shell/_cosmic.scss @@ -0,0 +1,31 @@ + +/* Pop_OS COSMIC Dock styling, append !important to any changed rules */ + +.cosmic-dock #dock { + border-radius: 12px 12px 12px 12px !important; + border: 0 !important; + background-color: darken($bg_color, 3%); + margin: 4px !important; +} + +.cosmic-dock.extended #dock { + border-radius: 0px !important; + margin: 0 !important; } + +.cosmic-dock.extended.side #dock { + border-top-width: 0 !important; + border-bottom-width: 0 !important; } + +.cosmic-dock.extended.side.left #dock { + border-left-width: 0 !important; } + +.cosmic-dock.extended.side.right #dock { + border-right-width: 0 !important; } + +.cosmic-dock.extended.bottom #dock { + border-bottom-width: 0 !important; + border-left-width: 0 !important; + border-right-width: 0 !important; } + +.cosmic-dock .app-well-app:hover .overview-icon, .cosmic-dock .app-well-app:focus .overview-icon, .cosmic-dock .app-well-app:selected .overview-icon { + border-radius: 11px; } \ No newline at end of file diff --git a/gnome-shell/gnome-shell.css b/gnome-shell/gnome-shell.css index 84d41b8..c7e571f 100644 --- a/gnome-shell/gnome-shell.css +++ b/gnome-shell/gnome-shell.css @@ -1255,6 +1255,9 @@ StScrollBar { #overview { spacing: 24px; } +#overview.cosmic-solid-bg { + background-color: #1E282C !important; } + .overview-controls { padding-bottom: 32px; } @@ -2084,3 +2087,32 @@ StScrollBar { .openweather-current-databox-captions, .openweather-forecast-day { color: #00e8b7; } + +/* Pop_OS COSMIC Dock styling, append !important to any changed rules */ +.cosmic-dock #dock { + border-radius: 12px 12px 12px 12px !important; + border: 0 !important; + background-color: #1c262f; + margin: 4px !important; } + +.cosmic-dock.extended #dock { + border-radius: 0px !important; + margin: 0 !important; } + +.cosmic-dock.extended.side #dock { + border-top-width: 0 !important; + border-bottom-width: 0 !important; } + +.cosmic-dock.extended.side.left #dock { + border-left-width: 0 !important; } + +.cosmic-dock.extended.side.right #dock { + border-right-width: 0 !important; } + +.cosmic-dock.extended.bottom #dock { + border-bottom-width: 0 !important; + border-left-width: 0 !important; + border-right-width: 0 !important; } + +.cosmic-dock .app-well-app:hover .overview-icon, .cosmic-dock .app-well-app:focus .overview-icon, .cosmic-dock .app-well-app:selected .overview-icon { + border-radius: 11px; } diff --git a/gnome-shell/gnome-shell.scss b/gnome-shell/gnome-shell.scss index f84c6f8..b287633 100644 --- a/gnome-shell/gnome-shell.scss +++ b/gnome-shell/gnome-shell.scss @@ -3,4 +3,5 @@ $subtheme: 'main'; @import "colors"; //use gtk colors @import "drawing"; @import "common"; -@import "extensions" \ No newline at end of file +@import "extensions"; +@import "cosmic" \ No newline at end of file