File size: 1,462 Bytes
d736789
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.vis {
	display: inline-block;
	position: relative;
	padding: 5px;
}

.vis.sparkline {
	height: 16px;
	bottom: -2px;
	margin-right: 3px;
	min-width: 6px;
	padding: 0;
}

.vis .container {
	display: inline-block;
	border: var(--strongBorder);
	height: 140px;
}

.vis.sparkline .container {
	height: 14px;
}

.vis .container.total {
	margin-left: 1px;
}

.vis .selector {
	background-color: white;
	display: table-cell;
	vertical-align: bottom;
	width: 40px;
	max-width: 40px;
	position: relative;
	height: 140px;
}

.vis.sparkline .selector {
	width: 4px;
	height: 14px;
}

.vis .bar.total {
	background-color: #666666;
	margin-left: 0;
}

.vis .selector_icon {
	min-width: 23px;
	min-height: 23px;
	border-radius: 7px;
	color: white;
	border: 2px solid white;
	box-shadow: var(--defaultShadow);
	position: absolute;
	top: 160px;
	left: 4px;
	text-align: center;
	padding: 2px;
}

.vis .selector_icon .symbol {
	margin-top: 5px;
}

.vis .value {
	font-size: 10pt;
	min-width: 40px;
	position: absolute;
	top: 143px;
	text-align: center;
	background: rgba(255,255,255,0.4);
}

.vis .selector .label {
	position: absolute;
	font-size: 9pt;
	font-weight: normal;
	top: 135px;
	left: 10px;
	padding: 2px;
	max-width: 130px;
	white-space: nowrap;
	background: rgba(255, 255, 255, 0.3);
	transform-origin: 0% 0%;
	transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	-ms-transform:rotate(-90deg);
}