blob: 6992310ac5c8453ce8e02164c974dd53d696c343 (
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
|
/*
* @version $Id$
*/
.normal_inner_block {
width: 100%;
}
/*
* The following style definitions can be removed when IE supports the "opacity"
* specification in place of its proprietary and non-standard method.
*/
.flag, .activeflag, .brightflag {
filter: alpha(opacity=100);
}
.dimflag {
filter: alpha(opacity=50);
}
.rela {
filter: alpha(opacity=67);
}
a.showit:hover span {
filter: alpha(opacity=85);
}
|