[gnome-shell] need space between item in endsession dialog session-list and app-list
- From: Giovanni Campagna <gcampagna src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] need space between item in endsession dialog session-list and app-list
- Date: Sat, 26 Oct 2013 14:26:56 +0000 (UTC)
commit d47ecf19f56ba04c6c21f03ec7b2170b392b6892
Author: Sebastien Lafargue <slaf66 gmail com>
Date: Sun Oct 20 15:03:18 2013 +0200
need space between item in endsession dialog session-list and app-list
https://bugzilla.gnome.org/show_bug.cgi?id=710543
data/theme/gnome-shell.css | 5 +++++
js/ui/endSessionDialog.js | 6 ++++--
2 files changed, 9 insertions(+), 2 deletions(-)
---
diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css
index 68f865d..b3371d3 100644
--- a/data/theme/gnome-shell.css
+++ b/data/theme/gnome-shell.css
@@ -1967,6 +1967,11 @@ StScrollBar StButton#vhandle:active {
padding-left: 50px;
}
+.end-session-dialog-session-list,
+.end-session-dialog-app-list {
+ spacing: 1em;
+}
+
.end-session-dialog-list-header {
font-weight: bold;
}
diff --git a/js/ui/endSessionDialog.js b/js/ui/endSessionDialog.js
index 457b319..11f619a 100644
--- a/js/ui/endSessionDialog.js
+++ b/js/ui/endSessionDialog.js
@@ -273,13 +273,15 @@ const EndSessionDialog = new Lang.Class({
this._applicationHeader = new St.Label({ style_class: 'end-session-dialog-list-header',
text: _("Some applications are busy or have unsaved work.")
});
- this._applicationList = new St.BoxLayout({ vertical: true });
+ this._applicationList = new St.BoxLayout({ style_class: 'end-session-dialog-app-list',
+ vertical: true });
this._inhibitorSection.add_actor(this._applicationHeader);
this._inhibitorSection.add_actor(this._applicationList);
this._sessionHeader = new St.Label({ style_class: 'end-session-dialog-list-header',
text: _("Other users are logged in.") });
- this._sessionList = new St.BoxLayout({ vertical: true });
+ this._sessionList = new St.BoxLayout({ style_class: 'end-session-dialog-session-list',
+ vertical: true });
this._inhibitorSection.add_actor(this._sessionHeader);
this._inhibitorSection.add_actor(this._sessionList);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]