[gnome-shell/gbsneto/new-lock-screen-part2: 11/17] unlockDialog: Add user name label below clock
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/new-lock-screen-part2: 11/17] unlockDialog: Add user name label below clock
- Date: Mon, 2 Dec 2019 16:03:09 +0000 (UTC)
commit a90c6aaf12ba87fa930a060d0aaa8c1b90bca0e0
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Fri Nov 29 18:46:10 2019 -0300
unlockDialog: Add user name label below clock
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/872
data/theme/gnome-shell-sass/_common.scss | 5 +++++
js/ui/unlockDialog.js | 15 ++++++++++++++-
2 files changed, 19 insertions(+), 1 deletion(-)
---
diff --git a/data/theme/gnome-shell-sass/_common.scss b/data/theme/gnome-shell-sass/_common.scss
index 14bcf56bc8..e12a747831 100644
--- a/data/theme/gnome-shell-sass/_common.scss
+++ b/data/theme/gnome-shell-sass/_common.scss
@@ -2065,6 +2065,11 @@ $_unlockdialog_shadow: 0px 0px 6px rgba(0, 0, 0, 0.726);
font-weight: bold;
}
+.unlock-dialog-user-name {
+ font-size: 16pt;
+ padding: 12px 0px;
+}
+
.unlock-dialog-notifications-container {
spacing: 6px;
width: 30em;
diff --git a/js/ui/unlockDialog.js b/js/ui/unlockDialog.js
index 547afa12a7..2ff9a59a84 100644
--- a/js/ui/unlockDialog.js
+++ b/js/ui/unlockDialog.js
@@ -421,7 +421,20 @@ var UnlockDialog = GObject.registerClass({
this._promptBox = new St.BoxLayout({ vertical: true });
stack.add_child(this._promptBox);
- this._clock = new Clock();
+ // Clock
+ this._clock = new St.BoxLayout({ vertical: true });
+
+ let clock = new Clock();
+ this._clock.add_child(clock);
+
+ let nameLabel = new St.Label({
+ style_class: 'unlock-dialog-user-name',
+ text: this._user.get_real_name(),
+ x_expand: true,
+ x_align: Clutter.ActorAlign.CENTER,
+ });
+ this._clock.add_child(nameLabel);
+
stack.add_child(this._clock);
this._showClock();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]