PluginProbe
WebTotem Security / 2.1.7
WebTotem Security v2.1.7
3.0.1 3.0.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.1 2.2.2 2.2.3 2.2.4 All 109 releases
wt-security / htdocs / css / chart.css

chart.css in WebTotem Security 2.1.7, at htdocs/css/chart.css

52 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .line-chart .axis line {
2 stroke: #f0f0f0; }
3
4 .line-chart .axis path {
5 stroke: #f0f0f0; }
6
7 .line-chart .axis text {
8 fill: #5e6977; }
9
10 .line-chart .grid line {
11 stroke: #f0f0f0; }
12
13 .line-chart .listening-rect {
14 fill: transparent; }
15
16 .line-chart__tooltip {
17 opacity: 0;
18 position: absolute;
19 top: -25px;
20 left: -17px;
21 padding: 0.2em 0.5em;
22 background: #1d293f;
23 text-align: center;
24 line-height: 1.4em;
25 font-size: 0.9em;
26 z-index: 10;
27 transition: all 0.1s ease-out;
28 pointer-events: none;
29 color: #fff;
30 font-family: Inter, Gilroy, Helvetica, sans-serif;
31 border-radius: 2px;
32 min-width: 28px; }
33
34 .line-chart__tooltip:before {
35 content: "";
36 position: absolute;
37 bottom: 0;
38 left: 50%;
39 width: 12px;
40 height: 12px;
41 background: #1d293f;
42 border-top-color: transparent;
43 border-left-color: transparent;
44 transform: translate(-50%, 50%) rotate(45deg);
45 transform-origin: center center;
46 z-index: 10; }
47
48 .line-chart {
49 position: relative; }
50
51 /*# sourceMappingURL=chart.css.map */
52