[gnome-shell] theme: Fix horizontal default user widget
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] theme: Fix horizontal default user widget
- Date: Tue, 25 Feb 2020 17:12:25 +0000 (UTC)
commit 89ca5e71d4efedcdbb1cacd9b172dc764750f656
Author: Florian Müllner <fmuellner gnome org>
Date: Thu Feb 20 16:10:36 2020 +0100
theme: Fix horizontal default user widget
Commit 6c6c89c63470b5 added a pill around the default avatar, but
assumed the sizes from the vertical widget used on the lock screen.
In order to fix the horizontal widget on the login screen, move the
size-specific bits to the corresponding .horizontal and .vertical
sections, and half the sizes for the former (which corelates with
the icon sizes).
https://gitlab.gnome.org/GNOME/gnome-shell/issues/2242
data/theme/gnome-shell-sass/widgets/_misc.scss | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/data/theme/gnome-shell-sass/widgets/_misc.scss b/data/theme/gnome-shell-sass/widgets/_misc.scss
index 9b5c6c085c..f9724398dd 100644
--- a/data/theme/gnome-shell-sass/widgets/_misc.scss
+++ b/data/theme/gnome-shell-sass/widgets/_misc.scss
@@ -15,18 +15,26 @@
& StIcon {
background-color: transparentize($osd_fg_color,0.95);
- padding: 18px 20px 22px 20px;
- width: 88px; height: 88px;
border-radius: 99px;
}
}
.user-widget.vertical .user-icon {
icon-size: 128px;
+
+ & StIcon {
+ padding: 18px 20px 22px 20px;
+ width: 88px; height: 88px;
+ }
}
.user-widget.horizontal .user-icon {
icon-size: 64px;
+
+ & StIcon {
+ padding: 9px 10px 11px 10px;
+ width: 44px; height: 44px;
+ }
}
.lightbox { background-color: black; }
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]