-
Notifications
You must be signed in to change notification settings - Fork 4
/
graphy.css
93 lines (77 loc) · 2.28 KB
/
graphy.css
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
/*
Copyright 2010-2012 DECK Monitoring LLC.
This file is part of Graphy from DECK Monitoring LLC.
Graphy is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Graphy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser Public License for more details.
You should have received a copy of the Lesser General Public License along with Graphy. If not, see <http://www.gnu.org/licenses/>.
*/
/* Do not mess with this rule. It is how we determine if the css is correctly loaded. */
.graphy_css_loaded {
position: absolute;
}
.vertical_text {
-webkit-transform: rotate(-90deg);
-webkit-transform-origin: top left;
-moz-transform: rotate(-90deg);
-moz-transform-origin: top left;
-o-transform: rotate(-90deg);
-o-transform-origin: top left;
-ms-transform: rotate(-90deg);
-ms-transform-origin: top left;
transform: rotate(-90deg);
transform-origin: top left;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.graphy_canvas {
background-color: #fff;
}
.graphy_point_label {
background-color: gray;
position: absolute;
font-weight: bold;
font-size: 10px;
font-family: Arial;
color: #fff;
line-height: 2em;
padding: 0 5px;
margin: 0;
white-space: nowrap;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
}
.graphy_bar_label, .graphy_v_rule_label {
font-size: 9px !important;
text-shadow:
-1px -1px 0 white,
1px -1px 0 white,
-1px 1px 0 white,
1px 1px 0 white,
1px 0 0 white,
-1px 0 0 white,
0 1px 0 white,
0 -1px 0 white;
}
.graphy_axis_label {
position: absolute;
font-family: Arial;
font-size: 11px;
line-height: 1em;
font-weight: bold;
color: #666;
padding: 0;
margin: 0;
}
.graphy_axis_label > .lite {
color: #ccc;
font-weight: normal;
}
.graphy_axis_unit_label {
}
.graphy_axis_clean_y_value_label {
font-size: 9px;
font-weight: normal;
}
.graphy_axis_clean_x_value_label, .graphy_axis_line_x_value_label, .graphy_axis_line_y_value_label {
color: #aaa;
}