From d20d89a0b95253e64149ed00e0a827b0125f78a3 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 22 Mar 2011 00:17:15 -0400 Subject: [PATCH] endSessionDialog: prelight inhibiting app items This commit makes it more obvious that apps in the end session dialog inhibitors list are clickable. It does this by rendering the text for the apps in a low intensity white under normal conditions, but a high intesnity white on hover. https://bugzilla.gnome.org/show_bug.cgi?id=645491 --- data/theme/gnome-shell.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index d39375f90..0ac243f00 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -1474,6 +1474,14 @@ StTooltip StLabel { padding-left: 32px; } +.end-session-dialog-app-list-item { + color: #ccc; +} + +.end-session-dialog-app-list-item:hover { + color: white; +} + .end-session-dialog-app-list-item:ltr { padding-right: 1em; }