OLD | NEW |
| (Empty) |
1 style "codefont" { | |
2 font = "-adobe-courier-medium-r-normal-*-*-120-*-*-m-*-iso8859-1" | |
3 } | |
4 | |
5 style "Input" = "codefont" { | |
6 # pass | |
7 } | |
8 | |
9 style "Console" = "codefont" { | |
10 # XXX: We should include a bg[NORMAL] line here, but doing so | |
11 # messes things up as it doesn't seem to set the color of the | |
12 # backdrop. | |
13 } | |
14 | |
15 style "Console_stdout" = "Console" { | |
16 fg[NORMAL] = { 0, 0, 0 } | |
17 } | |
18 | |
19 style "Console_stderr" = "Console" { | |
20 fg[NORMAL] = { 0.66, 0.5, 0 } | |
21 } | |
22 | |
23 style "Console_result" = "Console" { | |
24 fg[NORMAL] = { 0, 0, 1.0 } | |
25 } | |
26 | |
27 style "Console_exception" = "Console" { | |
28 fg[NORMAL] = { 1.0, 0, 0 } | |
29 } | |
30 | |
31 style "Console_command" = "Console" { | |
32 fg[NORMAL] = { 0.4, 0.4, 0.4 } | |
33 } | |
34 | |
35 widget "Manhole.*.Input" style "Input" | |
36 widget "Manhole.*.Console" style "Console" | |
37 | |
38 style "Bold" { | |
39 font = "-urw-nimbus sans l-bold-r-normal-*-*-120-*-*-p-*-iso8859-1" | |
40 } | |
41 | |
42 style "BoldCompressed" { | |
43 font = "-urw-nimbus sans l-bold-r-condensed-*-*-120-*-*-p-*-iso8859-1" | |
44 } | |
45 | |
46 style "Compressed" { | |
47 font = "-urw-nimbus sans l-regular-r-condensed-*-*-120-*-*-p-*-iso8859-1" | |
48 } | |
49 | |
50 style "AttributeName" = "BoldCompressed" { | |
51 fg[NORMAL] = { 0.0, 0.3, 0.0 } | |
52 } | |
53 | |
54 style "AttributeValue" = "Compressed" { | |
55 fg[NORMAL] = { 0.0, 0.4, 0.6 } | |
56 } | |
57 | |
58 widget "*.Visage.*.AttributeGroupTitle*" style "Bold" | |
59 widget "*.Visage.*.PropertyName*" style "AttributeName" | |
60 widget "*.Visage.*.AttributeName*" style "AttributeName" | |
61 widget "*.Visage.*.PropertyValue*" style "AttributeValue" | |
62 widget "*.Visage.*.AttributeValue*" style "AttributeValue" | |
OLD | NEW |