-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathbarsPlus.css
More file actions
87 lines (87 loc) · 1.67 KB
/
Copy pathbarsPlus.css
File metadata and controls
87 lines (87 loc) · 1.67 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
84
85
86
87
/**
* barsPlus styles
*
* Author: L. Woodside
* Modification History:
*
* Version Person Date Description
* V1.0.0 L. Woodside 19-Dec-2016 Initial Release
* V1.1.0 L. Woodside 29-Dec-2016 Added text on bars
*
*/
.qv-object-barsPlus
.ldwaxis path,
.ldwaxis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.qv-object-barsPlus
.ldwaxis {
font-family: sans-serif;
font-size: 12px;
}
.qv-object-barsPlus
.ldwaxis .axisTitle {
font-family: sans-serif;
font-size: 12px;
}
.qv-object-barsPlus
.ldwaxis .tick line {
opacity: 0.2;
}
.qv-object-barsPlus
.ldwbar.selected {
stroke: black;
stroke-width: 2px;
}
.qv-object-barsPlus
.ldwtxt, .ldwtxtref, .ldwtot {
font-family: sans-serif;
pointer-events: none;
}
.qv-object-barsPlus
.ldwlegend text {
font-family: sans-serif;
font-size: 12px;
fill: #777;
}
.qv-object-barsPlus
.ldwtooltip {
position: fixed;
padding: 5px;
width: auto;
background-color: #404040;
border-radius: 5px;
z-index: 10;
pointer-events: none;
}
.qv-object-barsPlus
.ldwtooltip::after {
content: "";
position: absolute;
bottom: -10px;
left: 50%;
border-width: 10px 10px 0;
border-style: solid;
border-color: #404040 transparent;
margin-left: -10px;
pointer-events: none;
}
.qv-object-barsPlus
.ldwtooltip .ldwttheading {
margin: 5px;
font-family: sans-serif;
font-size: 13px;
font-weight: bold;
line-height: 18px;
color: white;
}
.qv-object-barsPlus
.ldwtooltip .ldwttvalue {
margin: 5px;
font-family: sans-serif;
font-size: 13px;
line-height: 18px;
color: white;
}