0598ce145e
- Update sle-classic patches to version 3.26.0: + Update SLEClassicExt.js + Update gnome-shell-1007468-lock-screen-SUSE-logo-missing.patch + Update gnome-shell-disable-ibus-when-not-installed.patch + Update gnome-shell-domain.patch + Update gnome-shell-gdm-login-applet.patch + Update gs-fate318433-prevent-same-account-multi-logins.patch + Update gs-sle-classic-ext.patch OBS-URL: https://build.opensuse.org/request/show/525996 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=322
38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
Index: gnome-shell-3.26.0/data/gnome-shell-theme.gresource.xml
|
|
===================================================================
|
|
--- gnome-shell-3.26.0.orig/data/gnome-shell-theme.gresource.xml
|
|
+++ gnome-shell-3.26.0/data/gnome-shell-theme.gresource.xml
|
|
@@ -38,5 +38,6 @@
|
|
<file>toggle-on-hc.svg</file>
|
|
<file>ws-switch-arrow-up.png</file>
|
|
<file>ws-switch-arrow-down.png</file>
|
|
+ <file>sle-background.png</file>
|
|
</gresource>
|
|
</gresources>
|
|
Index: gnome-shell-3.26.0/data/theme/gnome-shell.css
|
|
===================================================================
|
|
--- gnome-shell-3.26.0.orig/data/theme/gnome-shell.css
|
|
+++ gnome-shell-3.26.0/data/theme/gnome-shell.css
|
|
@@ -1599,6 +1599,9 @@ StScrollBar {
|
|
padding-top: 24px;
|
|
max-width: 23em; }
|
|
|
|
+.login-dialog-sle {
|
|
+ background: #2e3436 url(sle-background.png); }
|
|
+
|
|
.login-dialog {
|
|
border: none;
|
|
background-color: transparent; }
|
|
Index: gnome-shell-3.26.0/js/ui/unlockDialog.js
|
|
===================================================================
|
|
--- gnome-shell-3.26.0.orig/js/ui/unlockDialog.js
|
|
+++ gnome-shell-3.26.0/js/ui/unlockDialog.js
|
|
@@ -37,6 +37,7 @@ var UnlockDialog = new Lang.Class({
|
|
layout_manager: new Clutter.BoxLayout(),
|
|
visible: false });
|
|
|
|
+ this.actor.add_style_class_name('login-dialog-sle');
|
|
this.actor.add_constraint(new Layout.MonitorConstraint({ primary: true }));
|
|
parentActor.add_child(this.actor);
|
|
|