diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-08-08 04:42:20 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-08-08 04:42:20 +0000 |
commit | 5cf69469f016e81f8c2bfc2413a0843fc6ce9cd4 (patch) | |
tree | 31f316debcbe025c756b92aba6e09a4ecee16344 | |
parent | de256332547f0205cab9bdb9edc39cd21fbf6743 (diff) | |
download | drakx-backup-do-not-use-5cf69469f016e81f8c2bfc2413a0843fc6ce9cd4.tar drakx-backup-do-not-use-5cf69469f016e81f8c2bfc2413a0843fc6ce9cd4.tar.gz drakx-backup-do-not-use-5cf69469f016e81f8c2bfc2413a0843fc6ce9cd4.tar.bz2 drakx-backup-do-not-use-5cf69469f016e81f8c2bfc2413a0843fc6ce9cd4.tar.xz drakx-backup-do-not-use-5cf69469f016e81f8c2bfc2413a0843fc6ce9cd4.zip |
fix color for selected item
-rw-r--r-- | perl-install/share/diskdrake.rc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/share/diskdrake.rc b/perl-install/share/diskdrake.rc index a9a731b0d..dfd58c5c8 100644 --- a/perl-install/share/diskdrake.rc +++ b/perl-install/share/diskdrake.rc @@ -8,28 +8,33 @@ style "font" style "red" = "font" { bg[NORMAL] = { 1.0, 0, 0 } + bg[ACTIVE] = { 0.9, 0, 0 } bg[PRELIGHT] = { 0.9, 0, 0 } } style "darkred" = "font" { bg[NORMAL] = { 0.7, 0, 0 } + bg[ACTIVE] = { 0.6, 0, 0 } bg[PRELIGHT] = { 0.6, 0, 0 } } style "green" = "font" { bg[NORMAL] = { 0, 1.0, 0 } + bg[ACTIVE] = { 0, 0.9, 0 } bg[PRELIGHT] = { 0, 0.9, 0 } fg[NORMAL] = { 0, 0, 0 } } style "blue" = "font" { bg[NORMAL] = { 0, 0, 1.0 } + bg[ACTIVE] = { 0, 0, 0.9 } bg[PRELIGHT] = { 0, 0, 0.9 } } style "white" = "font" { bg[NORMAL] = { 1.0, 1.0, 1.0 } - bg[PRELIGHT] = { 0.67, 0.67, 0.67 } + bg[ACTIVE] = { 0.9, 0.9, 0.9 } + bg[PRELIGHT] = { 0.9, 0.9, 0.9 } fg[NORMAL] = { 0, 0, 0 } } |