From c239d3bb1bc0ad44f5714f0c904e3c6196a47879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 9 Feb 2011 23:03:32 +0100 Subject: [PATCH] dash: Update style so running apps keep the highlight on hover Using "background" for the hover state overwrites the "background-image" property of running apps. Use "background-color" in hover instead, so the background image is kept during hover. Apply the same fix to the selection indicator for search results. --- data/theme/gnome-shell.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index b0a638d53..d9a30c49f 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -510,13 +510,13 @@ StTooltip StLabel { .app-well-app:selected > .overview-icon, .search-result-content:selected > .overview-icon { - background: rgba(255,255,255,0.33); + background-color: rgba(255,255,255,0.33); } .app-well-app:hover > .overview-icon, .remove-favorite:hover > .overview-icon, .search-result-content:hover > .overview-icon { - background: rgba(255,255,255,0.1); + background-color: rgba(255,255,255,0.1); text-shadow: black 0px 2px 2px; transition-duration: 100; }