help.css
780 Bytes
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#btShowHelp {
position: absolute;
top: 2px;
right: 2px;
display: block;
width: 32px;
height: 32px;
opacity: 0.5;
filter: alpha(opacity=50);
}
#btShowHelp:hover {
opacity: 1;
filter: alpha(opacity=100);
}
#btShowHelp span {
display: none;
}
#helpBox {
position: absolute;
top: 350px;
border: 2px solid #26A;
background: #A0B8D0;
width: 35%;
z-index: 2000;
}
#helpBoxBody {
border: 1px solid #E8F0F8;
padding: 0px 5px 0px 10px;
}
#helpAvatar {
float: left;
margin: 5px 10px 5px -5px;
width: 48px;
height: 48px;
background: url("/images/help-avatar.gif");
}
.msie6 #helpAvatar {
margin: 5px 8px 5px -2px;
}
#helpBoxBody p {
margin: 0px;
padding: 8px 0px 0px 0px;
}
.help-force-clear-ieworkarroundbug {
margin-top: -2px;
}