HtmlButtonTemplate_wev8.css
1.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* ---- button --- */
.dojoButton {
padding: 0 0 0 0;
margin: 0 0 0 0;
font-size: 8pt;
white-space: nowrap;
cursor: pointer;
}
.dojoButton.dojoDisabled {
cursor: default;
}
.dojoButton a {
color: black;
text-decoration: none;
}
.dojoButton.dojoDisabled a {
color: #999;
}
.dojoButton .label {
padding-right: 5px;
text-align: center; /* if icon and label are split across two lines, center icon */
}
.dojoButton img {
vertical-align: middle; /* if icon and label are on same line, center them */
}
.dojoButton td, .dojoButtonWrapper td {
margin: 0 0 0 0;
padding: 0 0 0 0;
position: relative;
}
.dojoButton table {
padding: 0 0 0 0;
cell-spacing: 0px;
cell-padding: 0px;
}
/* -------- colors ------------ */
.dojoButtonNoHover {
}
.dojoButtonHover {
}
.dojoButton.disabled, .dojoButton.disabled * {
color : #999;
cursor : default;
background-color : #f4f4f4;
}
/** ----- container for the button and stub to attach the menu below it ----- **/
.dojoButtonWrapper {
border-spacing: 0px;
cell-spacing: 0px;
cell-padding: 0px;
margin: 0 0 0 0;
padding: 0 0 0 0;
display: inline;
margin-right: 10px;
text-decoration: none;
}
/* ---------- 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;
}