diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-28 09:31:26 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-28 09:33:03 +0100 |
commit | 1285c7382105cba7e4567c3a4c890cec2708b4a2 (patch) | |
tree | 81c9ef3efebe79600312b6ffcd205dd2a993a293 | |
parent | f1fc9d3e4ccb4a7a27e7c080d338fa78ea7fa3e6 (diff) | |
download | drakx-1285c7382105cba7e4567c3a4c890cec2708b4a2.tar drakx-1285c7382105cba7e4567c3a4c890cec2708b4a2.tar.gz drakx-1285c7382105cba7e4567c3a4c890cec2708b4a2.tar.bz2 drakx-1285c7382105cba7e4567c3a4c890cec2708b4a2.tar.xz drakx-1285c7382105cba7e4567c3a4c890cec2708b4a2.zip |
fix left panel text being black instead of white (mga#11792)
issue introduced in commit 7bebddbde7bc6aeef0cbacc46df5bd3a4162160a
when switching from gtk2 RC files to gtk3 CSS:
we need to add "*" to match children widgets too
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/share/themes-galaxy.css | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 9e21655a8..82f0d68b6 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - fix a warning: include dialog-warning-symbolic +- fix left panel text being black instead of white (mga#11792) Version 16.0 - 23 November 2013 diff --git a/perl-install/share/themes-galaxy.css b/perl-install/share/themes-galaxy.css index 7bbbbddcc..617e25d3f 100644 --- a/perl-install/share/themes-galaxy.css +++ b/perl-install/share/themes-galaxy.css @@ -8,7 +8,7 @@ */ -#Logo, #Steps { +#Logo, #Steps * { /* base[NORMAL] = { 0.28, 0.38, 0.66 }; */ background-color: #548EE6; color: #FFFFFF; |