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 / scss / chart.scss

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

53 lines 1.1 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
35 .line-chart__tooltip:before {
36 content: "";
37 position: absolute;
38 bottom: 0;
39 left: 50%;
40 width: 12px;
41 height: 12px;
42 background: #1d293f;
43 border-top-color: transparent;
44 border-left-color: transparent;
45 transform: translate(-50%, 50%) rotate(45deg);
46 transform-origin: center center;
47 z-index: 10;
48 }
49
50 .line-chart {
51 position: relative;
52 }
53