HtmlButton2Template_wev8.css
1.04 KB
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
54
55
56
57
58
59
/* ---- button --- */
.dojoButton {
padding: 0 0 0 0;
font-size: 8pt;
white-space: nowrap;
cursor: pointer;
}
.dojoButton .dojoButtonContents {
padding: 2px 2px 2px 2px;
text-align: center; /* if icon and label are split across two lines, center icon */
color: white;
}
.dojoButtonLeftPart .dojoButtonContents {
padding-right: 8px;
}
.dojoButtonDisabled {
cursor: url("images/no_wev8.gif"), default;
}
.dojoButtonContents img {
vertical-align: middle; /* if icon and label are on same line, center them */
}
/* -------- colors ------------ */
.dojoButtonHover .dojoButtonContents {
}
.dojoButtonDepressed .dojoButtonContents {
font-style: italic;
color: yellow;
}
.dojoButtonDisabled .dojoButtonContents {
color: #eeeeee;
}
/* ---------- drop down button specific ---------- */
/* border between label and arrow (for drop down buttons */
.dojoButton .border {
width: 1px;
background: gray;
}
/* button arrow */
.dojoButton .downArrow {
padding-left: 10px;
text-align: center;
}
.dojoButton.disabled .downArrow {
cursor : default;
}