diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-10 07:41:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-10 07:41:26 +0000 |
commit | 5f0262efdf5865a7814996e9ba31a987f74fe2f9 (patch) | |
tree | 7bfef89769c3baab75fa43b2f420355fad37698d | |
parent | 3817038fb1ecc02c66af971ed10320d77a7f1116 (diff) | |
download | bootloader-theme-5f0262efdf5865a7814996e9ba31a987f74fe2f9.tar bootloader-theme-5f0262efdf5865a7814996e9ba31a987f74fe2f9.tar.gz bootloader-theme-5f0262efdf5865a7814996e9ba31a987f74fe2f9.tar.bz2 bootloader-theme-5f0262efdf5865a7814996e9ba31a987f74fe2f9.tar.xz bootloader-theme-5f0262efdf5865a7814996e9ba31a987f74fe2f9.zip |
- change color of F1,F2... at bottom so that it's readable
- adapt the position and width of the menu to the image
- increase max entries (it won't hurt if you have less, and the user doesn't
know the hidden entries can be obtained through scrolling the list of entries)
-rw-r--r-- | common.inc | 7 | ||||
-rw-r--r-- | panel.inc | 2 |
2 files changed, 5 insertions, 4 deletions
@@ -1202,15 +1202,15 @@ /frame1.pos { 120 110 } def /frame1.width 400 def } { - /frame1.pos { 200 250 } def - /frame1.width 500 def + /frame1.pos { 200 225 } def + /frame1.width 415 def } ifelse /menu.start.x frame1.pos pop 10 add def /menu.start.y frame1.pos exch pop 12 add def /menu.bar.width frame1.width 20 sub def - /menu.max.entries 7 def + /menu.max.entries 11 def /boot.label.len 243 def @@ -1531,6 +1531,7 @@ dup .undef eq { pop "back-low.jpg" findfile } if /black 0x000000 newcolor /white 0xffffff newcolor /blue 0x0000a0 newcolor +/lightblue 0x477cc7 newcolor /red 0xc00000 newcolor /green 0x009000 newcolor /yellow 0xffff20 newcolor @@ -14,7 +14,7 @@ /panel.text.Fy 0 def /panel.font font.normal def /panel.normal white def -/panel.high blue def +/panel.high lightblue def /panel.bg lightgray def /panel.border lightdotcolor def |