This commit is contained in:
Kenneth Jannette
2024-01-13 01:47:29 -06:00
parent 1b67e82789
commit f110979bec
3 changed files with 27 additions and 13 deletions

View File

@@ -7,18 +7,30 @@
width: 30px;
margin: 0px 6px;
padding: 0px 2px;
background-color: yellow;
}
.tooltip-text {
font-size: 12px;
visibility: hidden;
opacity: 0;
}
.tooltip-container:hover .tooltip-text:hover {
font-size: 12px;
visibility: visible;
.infocircle-icon {
color: red;
}
.tooltip-text {
position: absolute;
//top: 10;
//left: 50;
//right: 5;
width: 300px;
margin-right: 12px;
padding: 6px 6px;
font-size: 0.8rem;
background-color: var(--barely-there-accent);
border: 1px solid var(--gattlin-grey);
border-radius: 10px;
color: #000;
opacity: 1;
z-index: 9;
}