summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2020-02-04 12:29:02 +0100
committerJakub Steiner <jimmac@localhost.localdomain>2020-02-04 15:28:56 +0100
commitb58d702a2d2b8b255b8c23d0761c6afaa6532ca3 (patch)
tree15d590fd86ede0859eefba775f0e6a32026646fe
parent404ae0a897f8179551402169877304732b420ef7 (diff)
downloadgnome-shell-wip/jimmac/system-grey-tweak.tar.gz
theme: update system grey backgroundwip/jimmac/system-grey-tweak
Fixes https://gitlab.gnome.org/GNOME/gnome-shell/issues/2174
-rw-r--r--data/gnome-shell-theme.gresource.xml1
-rw-r--r--data/theme/gnome-shell-sass/widgets/_screen-shield.scss5
-rw-r--r--data/theme/noise-texture.pngbin79464 -> 0 bytes
-rw-r--r--js/ui/background.js2
4 files changed, 2 insertions, 6 deletions
diff --git a/data/gnome-shell-theme.gresource.xml b/data/gnome-shell-theme.gresource.xml
index cc9caef0a..c846b9cef 100644
--- a/data/gnome-shell-theme.gresource.xml
+++ b/data/gnome-shell-theme.gresource.xml
@@ -18,7 +18,6 @@
<file alias="icons/message-indicator-symbolic.svg">message-indicator-symbolic.svg</file>
<file>no-events.svg</file>
<file>no-notifications.svg</file>
- <file>noise-texture.png</file>
<file>pad-osd.css</file>
<file alias="icons/eye-open-negative-filled-symbolic.svg">eye-open-negative-filled-symbolic.svg</file>
<file alias="icons/eye-not-looking-symbolic.svg">eye-not-looking-symbolic.svg</file>
diff --git a/data/theme/gnome-shell-sass/widgets/_screen-shield.scss b/data/theme/gnome-shell-sass/widgets/_screen-shield.scss
index 823ac8184..45de8c3ee 100644
--- a/data/theme/gnome-shell-sass/widgets/_screen-shield.scss
+++ b/data/theme/gnome-shell-sass/widgets/_screen-shield.scss
@@ -70,8 +70,7 @@ $_screenshield_shadow: 0px 0px 6px rgba(0, 0, 0, 0.726);
}
#lockDialogGroup {
- background: lighten(#2e3436, 8%) url(resource:///org/gnome/shell/theme/noise-texture.png);
- background-repeat: repeat;
+ background-color: lighten(#2e3436, 8%);
}
#screenShieldNotifications {
@@ -80,4 +79,4 @@ $_screenshield_shadow: 0px 0px 6px rgba(0, 0, 0, 0.726);
&:hover, &:focus { background-color: transparentize($bg_color,0.5); }
&:active { background-color: transparentize($selected_bg_color,0.5); }
}
-} \ No newline at end of file
+}
diff --git a/data/theme/noise-texture.png b/data/theme/noise-texture.png
deleted file mode 100644
index 6b70a2d40..000000000
--- a/data/theme/noise-texture.png
+++ /dev/null
Binary files differ
diff --git a/js/ui/background.js b/js/ui/background.js
index f7506dec4..112a6fbe7 100644
--- a/js/ui/background.js
+++ b/js/ui/background.js
@@ -504,12 +504,10 @@ var SystemBackground = GObject.registerClass({
Signals: { 'loaded': {} },
}, class SystemBackground extends Meta.BackgroundActor {
_init() {
- let file = Gio.File.new_for_uri('resource:///org/gnome/shell/theme/noise-texture.png');
if (_systemBackground == null) {
_systemBackground = new Meta.Background({ meta_display: global.display });
_systemBackground.set_color(DEFAULT_BACKGROUND_COLOR);
- _systemBackground.set_file(file, GDesktopEnums.BackgroundStyle.WALLPAPER);
}
super._init({