blob: dc29d60559db29a65e370c8bbbddaadb11389672 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<style>
.fieldtext {
fill: -moz-fieldtext;
#ifdef MOZ_WIDGET_GTK
/* The fill-opacity needs to be sufficient for high-contrast settings, and
pathological Gtk themes where -moz-fieldtext provides low contrast by
default. */
fill-opacity: .7;
#else
fill-opacity: .5;
#endif
}
#ifdef XP_WIN
@media (-moz-windows-default-theme: 0) {
/* more opacity for high-contrast themes */
.fieldtext {
fill-opacity: .8;
}
}
#endif
.highlighttext {
fill: highlighttext;
fill-opacity: 1;
}
.black {
fill: black;
fill-opacity: .6;
}
.white {
fill: white;
fill-opacity: .7;
}
</style>
|