PluginProbe
OPcache Manager / trunk
OPcache Manager vtrunk
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 2.0.0 2.1.0 2.10.0 2.11.0 2.12.0 2.13.0 2.13.1 2.14.0 2.2.0 2.3.0 2.3.1 2.3.2 2.4.0 2.5.0 2.6.0 All 36 releases
opcache-manager / admin / css / chartist-plugin-tooltip.css

chartist-plugin-tooltip.css in OPcache Manager trunk, at admin/css/chartist-plugin-tooltip.css

39 lines 871 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 :root {
2 --tooltip-font-color: #FFFFFF;
3 --tooltip-background-color: #73879C;
4 --tooltip-box-shadow: 1px 1px 8px #DDDDDD;
5 }
6
7 .chartist-tooltip {
8 position: absolute;
9 display: inline-block;
10 opacity: 0;
11 background: var(--tooltip-background-color);
12 color: var(--tooltip-font-color);
13 font-size: 10px;
14 padding: 10px 15px;
15 border-radius: 4px;
16 text-align: center;
17 pointer-events: none;
18 z-index: 99;
19 transition: transform 400ms ease, opacity 400ms;
20 box-shadow: var(--tooltip-box-shadow);
21 }
22
23 .chartist-tooltip:before {
24 content: "";
25 position: absolute;
26 top: 100%;
27 left: 50%;
28 width: 0;
29 height: 0;
30 margin-left: -6px;
31 border: 6px solid transparent;
32 border-top-color: var(--tooltip-background-color);
33 }
34
35 .chartist-tooltip.tooltip-show {
36 opacity: 1;
37 transform: translateY(-10px);
38 }
39