blob: e82ec307ebac47ed71b29cf1c963e0e721f5a63f (
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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
body {
font-family: sans;
width: 960px;
margin: 20px auto 10px auto;
}
form div {
text-align: center;
}
h2 {
font-size: 14px;
}
p, li, dt, dd, td, th, div {
font-size: 12px;
}
.loading .title {
background-repeat: no-repeat;
background-position: 0 50%;
background-image: url(/assets/icons/loading.gif);
}
.range-preview {
height:50px;
margin: 0 auto 10px auto;
position: relative;
}
.chart {
height:200px;
width: 850px;
margin: 0 auto 0 auto;
clear: both;
}
.tickLabel {
width:50px;
overflow:hidden;
}
.graph-legend {
width: 790px;
padding: 5px 0 5px 0;
margin: 10px auto 0 auto;
background-color: #f7f7f7;
position: relative;
left: 25px;
}
.graph-legend .legendItem {
float: left;
cursor: pointer;
margin-right: 20px;
margin-top: 5px;
margin-left: 5px;
}
.graph-legend .disabled {
text-decoration: line-through;
}
.graph-legend .legendColorBox {
float: left;
margin-right: 5px;
}
input[type=checkbox] {
margin: 0;
padding: 0;
border: none;
}
input[type=text] {
padding: 3px;
border: 1px solid #EEE;
}
.notice {
border: 1px solid Green;
background: #FFDDFF;
margin-bottom: 20px;
padding: 5px;
}
#calroot {
z-index: 2;
}
.chart-header {
width: 790px;
padding: 5px 0 5px 0;
margin: 20px auto 0 auto;
position: relative;
left: 25px;
}
.chart-header:AFTER {
content: ''
}
.chart-container h2{
float: left;
margin: 0;
}
.chart-container .chart-controls{
float: right;
margin: 0;
}
.tab-controls {
width: 790px;
padding: 5px 0 5px 0;
margin: 20px auto 0 auto;
text-align: right;
position: relative;
left: 25px;
}
|