Browse
For agents
About
OPcache Manager
/
trunk
OPcache Manager
vtrunk
Switch version
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
Overview
Code
opcache-manager
/
admin
/
css
/
chartist-plugin-tooltip.min.css
chartist-plugin-tooltip.min.css
in OPcache Manager trunk, at admin/css/chartist-plugin-tooltip.min.css
1 lines
683 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
:
root
{
--tooltip-font-color
:
#
fff
;
--tooltip-background-color
:
#
73879c
;
--tooltip-box-shadow
:
1
px
1
px
8
px
#
ddd
}
.
chartist-tooltip
{
position
:
absolute
;
display
:
inline-block
;
opacity
:
0
;
background
:
var
(
--tooltip-background-color
)
;
color
:
var
(
--tooltip-font-color
)
;
font-size
:
10
px
;
padding
:
10
px
15
px
;
border-radius
:
4
px
;
text-align
:
center
;
pointer-events
:
none
;
z-index
:
99
;
transition
:
transform
400
ms
ease
,
opacity
400
ms
;
box-shadow
:
var
(
--tooltip-box-shadow
)
}
.
chartist-tooltip
:
before
{
content
:
"
"
;
position
:
absolute
;
top
:
100
%
;
left
:
50
%
;
width
:
0
;
height
:
0
;
margin-left
:
-6
px
;
border
:
6
px
solid
transparent
;
border-top-color
:
var
(
--tooltip-background-color
)
}
.
chartist-tooltip
.
tooltip-show
{
opacity
:
1
;
transform
:
translateY
(
-10
px
)
}