Blame SOURCES/0001-loginDialog-make-info-messages-themed.patch

86957c
From 4ad30b5c506ab043c2091441021b6cf334e2412f Mon Sep 17 00:00:00 2001
0999a2
From: Ray Strode <rstrode@redhat.com>
0999a2
Date: Mon, 26 Jun 2017 14:35:05 -0400
0999a2
Subject: [PATCH] loginDialog: make info messages themed
0999a2
0999a2
They were lacking a definition before leading them to
0999a2
show up invisible.
0999a2
---
0999a2
 data/theme/gnome-shell-sass/widgets/_login-dialog.scss | 4 ++++
0999a2
 1 file changed, 4 insertions(+)
0999a2
0999a2
diff --git a/data/theme/gnome-shell-sass/widgets/_login-dialog.scss b/data/theme/gnome-shell-sass/widgets/_login-dialog.scss
0999a2
index 1789beca9..84539342d 100644
0999a2
--- a/data/theme/gnome-shell-sass/widgets/_login-dialog.scss
0999a2
+++ b/data/theme/gnome-shell-sass/widgets/_login-dialog.scss
86957c
@@ -66,60 +66,64 @@
86957c
         border-color: darken($selected_bg_color, 10%);
86957c
         background-color: darken($selected_bg_color, 10%);
86957c
         color: transparentize($selected_fg_color, 0.3);
86957c
       }
86957c
     }
86957c
   }
86957c
 
86957c
   .cancel-button,
86957c
   .switch-user-button,
86957c
   .login-dialog-session-list-button {
86957c
     padding: 0;
86957c
     border-radius: 99px;
86957c
     width: $base_icon_size * 2;
86957c
     height: $base_icon_size * 2;
86957c
     border-color: darken($system_bg_color, 3%);
86957c
     background-color: darken($system_bg_color, 3%);
86957c
 
86957c
     StIcon { icon-size: $base_icon_size; }
86957c
   }
86957c
 
86957c
   .caps-lock-warning-label,
86957c
   .login-dialog-message-warning {
86957c
     color: $osd_fg_color;
86957c
   }
86957c
 }
86957c
 
86957c
 .login-dialog-logo-bin { padding: 24px 0px; }
0999a2
 .login-dialog-banner { color: darken($osd_fg_color,10%); }
0999a2
 .login-dialog-button-box { width: 23em; spacing: 5px; }
0999a2
 .login-dialog-message { text-align: center; }
0999a2
+.login-dialog-message-hint, .login-dialog-message {
0999a2
+  color: darken($osd_fg_color, 20%);
0999a2
+  min-height: 2.75em;
0999a2
+}
0999a2
 .login-dialog-user-selection-box { padding: 100px 0px; }
0999a2
 .login-dialog-not-listed-label {
0999a2
   padding-left: 2px;
86957c
   .login-dialog-not-listed-button:focus &,
86957c
   .login-dialog-not-listed-button:hover & {
86957c
     color: $osd_fg_color;
86957c
   }
86957c
 }
86957c
 
86957c
 .login-dialog-not-listed-label {
86957c
   @include fontsize($base_font_size - 1);
86957c
   font-weight: bold;
86957c
   color: darken($osd_fg_color,30%);
86957c
   padding-top: 1em;
86957c
 }
86957c
 
86957c
 .login-dialog-user-list-view { -st-vfade-offset: 1em; }
86957c
 .login-dialog-user-list {
86957c
   spacing: 12px;
86957c
   width: 23em;
86957c
   &:expanded .login-dialog-user-list-item:selected { background-color: $selected_bg_color; color: $selected_fg_color; }
86957c
   &:expanded .login-dialog-user-list-item:logged-in { border-right: 2px solid $selected_bg_color; }
86957c
 }
86957c
 
86957c
 .login-dialog-user-list-item {
86957c
   border-radius: $base_border_radius + 4px;
86957c
   padding: 6px;
86957c
   color: darken($osd_fg_color,30%);
86957c
   &:ltr .user-widget { padding-right: 1em; }
86957c
   &:rtl .user-widget { padding-left: 1em; }
0999a2
-- 
86957c
2.34.1
0999a2