Add ability to generate deeplinks URL for chart

This commit is contained in:
2023-05-06 16:50:55 -07:00
parent be4678eab1
commit 7df594f22a
3 changed files with 87 additions and 1 deletions

View File

@@ -395,6 +395,44 @@ details[open] summary {
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 280px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 80%;
left: -15%;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
@keyframes lds-ripple {
0% {
top: 36px;