-
Notifications
You must be signed in to change notification settings - Fork 2
/
plot-main-alt.css
163 lines (143 loc) · 2.56 KB
/
plot-main-alt.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/* style for the settings still on the top
* without tabs for now
*/
html, body {
font-family: sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
div span {
margin-left: 10px;
}
/* top panel */
#settings-panel {
float: left;
width: 100%;
height: 30%;
font-size: 13px;
overflow: hidden;
background: #ededed;
border-bottom: 1px solid gray;
}
/* top-left */
#chart-settings {
width: 20%;
height: 100%;
float: left;
padding: 10px;
border-right: 1px solid gray;
background: #ededed;
}
#chart-settings input { width: 30%; }
/* middle-left; list view of series/files */
#series-view {
float: left;
display: inline block;
background: #e1e1e1;
height: 100%;
border-bottom: 1px solid #bdbdbd;
}
/* series selection + button area */
.select-series {
float: left;
padding: 15px;
height: 100%;
background: #ededed;
}
#series-view span {
margin-left: 5px;
font-size: 12px;
}
/* contains options */
#series-view #set-series {
float: left;
padding: 10px;
background: #e1e1e1;
}
/* selection list */
#series-view #series-list {
margin-top: 10px;
width: 125px;
height: 50%;
}
/* tab + tab content region */
#tab-view {
float: left;
width: 30%;
height: 100%;
display: none; /* unused for now */
background: #ededed;
padding-left: 10px;
border-right: 1px solid #bdbdbd;
}
/* tab area */
#tabs {
margin: 0;
padding: 5px;
list-style: none;
overflow: hidden;
}
/* individual tab */
#tabs li {
float: left;
display: block;
padding: 5px;
background-color: #bbb;
margin-right: 5px;
height: 17px;
border-left: 1px solid gray;
border-right: 1px solid gray;
border-top: 1px solid gray;
z-index: 1;
}
#tabs li a { color: black; text-decoration: none; }
#tabs li.current { background-color: #ededed; }
#tabs li.current a { color: #000; text-decoration: none; }
#tabs li a.remove { color: #f00; margin-left: 10px; }
/* displays on tab click */
.tab-content {
padding: 5px;
height: 100%;
border-left: 1px solid gray;
border-top: 1px solid gray;
margin-left: 5px;
margin-top: -6px;
z-index: 2;
}
/* chart mouseover labels */
.edit {
background-color: #FCF79F;
position: absolute;
display: none;
padding: 10px;
width: 220px;
height: 80px;
font-size: 13px;
}
.edit span {
margin-left: 10px;
}
button {
font-size: 13px;
margin: 0;
}
/* remainder region containing chart */
#chart-container {
float: left;
display: inline block;
margin-right: 0;
width: 100%;
}
/* chart container */
#chart {
position: relative;
width: 70%;
height: 60%;
margin-left: 15%;
margin-top: 3%;
float: left;
display: inline block;
border: 1px solid gray;
text-align: center;
}