This commit is contained in:
Viet An
2026-07-09 16:45:48 +07:00
parent 42124d4071
commit df4ed4bd4d
20 changed files with 726 additions and 964 deletions

View File

@@ -12,27 +12,3 @@
position: relative;
width: 100%;
}
// Tooltip Styles
.tooltiptext {
opacity: 0;
background-color: hsl(from var(--bulma-black-bis) h s l / 0.7);
color: var(--bulma-white-bis);
border-radius: 6px;
position: absolute;
margin-left: 0px;
z-index: 999;
bottom: 110%;
transition: opacity 0.2s;
padding: 0.4rem 0.6rem;
font-size: 13px;
pointer-events: none;
backdrop-filter: blur(2px);
}
.control:hover .tooltiptext {
opacity: 1;
position: absolute;
min-width: 300px;
z-index: 999;
}

View File

@@ -4,6 +4,28 @@
border: 1px solid red !important;
}
.tooltiptext {
opacity: 0;
background-color: hsl(from var(--bulma-black-bis) h s l / 0.8);
color: var(--bulma-white-bis);
border-radius: 4px;
position: absolute;
margin-left: 0px;
z-index: 999;
left: 0;
bottom: -32px;
min-width: max-content;
transition: opacity 0.2s;
padding: 0.3rem 0.6rem;
font-size: 12px;
pointer-events: none;
backdrop-filter: blur(2px);
}
*:hover > .tooltiptext {
opacity: 1;
}
// Font size loops
@for $i from 10 through 50 {
.fs-#{$i} {