From 013c62dd661e117aba88362b7d3eb9e40caa0905 Mon Sep 17 00:00:00 2001 From: EliverLara Date: Fri, 16 Nov 2018 23:32:01 -0600 Subject: [PATCH] Fix gnome shell issues (OpenWeather extension) --- gnome-shell/_extensions.scss | 1 + gnome-shell/extensions/_openweather.scss | 13 +++++++++++++ gnome-shell/gnome-shell.css | 12 ++++++++++++ gnome-shell/gnome-shell.scss | 7 ++++--- 4 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 gnome-shell/_extensions.scss create mode 100644 gnome-shell/extensions/_openweather.scss diff --git a/gnome-shell/_extensions.scss b/gnome-shell/_extensions.scss new file mode 100644 index 0000000..aaeaa3b --- /dev/null +++ b/gnome-shell/_extensions.scss @@ -0,0 +1 @@ +@import "extensions/_openweather" \ No newline at end of file diff --git a/gnome-shell/extensions/_openweather.scss b/gnome-shell/extensions/_openweather.scss new file mode 100644 index 0000000..03dd97b --- /dev/null +++ b/gnome-shell/extensions/_openweather.scss @@ -0,0 +1,13 @@ +.openweather-current-summarybox, +.openweather-forecast-icon, +.openweather-current-databox-captions, +.openweather-current-databox-values, +.openweather-current-icon, +.openweather-forecast-summary, +.openweather-forecast-temperature{ + background: transparent; +} + +.openweather-current-databox-captions, .openweather-forecast-day { + color: $selected_bg_color; +} \ No newline at end of file diff --git a/gnome-shell/gnome-shell.css b/gnome-shell/gnome-shell.css index 2337ea2..b24fed3 100644 --- a/gnome-shell/gnome-shell.css +++ b/gnome-shell/gnome-shell.css @@ -1975,3 +1975,15 @@ StScrollBar { border: 2px solid grey; border-radius: 4px; padding: 6px; } + +.openweather-current-summarybox, +.openweather-forecast-icon, +.openweather-current-databox-captions, +.openweather-current-databox-values, +.openweather-current-icon, +.openweather-forecast-summary, +.openweather-forecast-temperature { + background: transparent; } + +.openweather-current-databox-captions, .openweather-forecast-day { + color: #00e8b7; } diff --git a/gnome-shell/gnome-shell.scss b/gnome-shell/gnome-shell.scss index 225cbf8..f84c6f8 100644 --- a/gnome-shell/gnome-shell.scss +++ b/gnome-shell/gnome-shell.scss @@ -1,5 +1,6 @@ $subtheme: 'main'; -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; +@import "colors"; //use gtk colors +@import "drawing"; +@import "common"; +@import "extensions" \ No newline at end of file