blob: b599daeda462ead9e915ff2e44d79a7714796842 (
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
|
/*
* @version $Id$
*/
.small_inner_block {
height: expression( this.scrollHeight > 159 ? "160px" : "auto" );
}
.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);
}
|