2020-05-20 18:46:59 +00:00
|
|
|
@import "../../../css/static/mixin";
|
|
|
|
|
2020-06-13 16:47:05 +00:00
|
|
|
html:root {
|
|
|
|
--tooltip-background-color: #232222;
|
2020-07-20 17:08:13 +00:00
|
|
|
--tooltip-color: #999;
|
2020-06-13 16:47:05 +00:00
|
|
|
}
|
|
|
|
|
2020-05-20 18:46:59 +00:00
|
|
|
.container {
|
2020-06-13 16:47:05 +00:00
|
|
|
background-color: var(--tooltip-background-color);
|
2020-07-20 17:08:13 +00:00
|
|
|
color: var(--tooltip-color);
|
2020-05-20 18:46:59 +00:00
|
|
|
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1000000;
|
|
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
padding: .25em;
|
|
|
|
transform: translate(-50%, -100%); /* translate up, center */
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
border-right: 3px;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
@include transition(opacity .5s ease-in-out);
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
|
|
|
|
left: calc(50% - .5em);
|
|
|
|
bottom: -.4em;
|
|
|
|
|
|
|
|
border-style: solid;
|
|
|
|
border-width: .5em .5em 0 .5em;
|
2020-06-13 16:47:05 +00:00
|
|
|
border-color: var(--tooltip-background-color) transparent transparent transparent;
|
2020-05-20 18:46:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.shown {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-12-22 12:32:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.iconTooltip {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2021-03-14 18:39:08 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2020-05-20 18:46:59 +00:00
|
|
|
}
|