Template:Tooltip/styles.css: Difference between revisions
From Space Station 14 Wiki
wip |
moved from template; updated to look legible |
||
Line 22: | Line 22: | ||
box-shadow: 0 1px 5px 1px var(--bg-color); | box-shadow: 0 1px 5px 1px var(--bg-color); | ||
} | |||
.tooltip-display-text { | |||
--col: var(--green-color-light); | |||
--text-decoration: underline 1px dashed var(--col); | |||
text-decoration: var(--text-decoration); | |||
} | } | ||
Revision as of 01:03, 14 March 2025
.tooltip-display-text-container {
position: relative;
}
.tooltip-display-text {
/* set in template */
}
.tooltip {
display: none;
position: absolute;
top: -.5rem;
left: 50%;
transform: translate(-50%,-100%);
width: max-content;
padding: .35rem;
background-color: var(--bg-color-light-x4);
border: 1px solid var(--border-color-light-x2);
box-shadow: 0 1px 5px 1px var(--bg-color);
}
.tooltip-display-text {
--col: var(--green-color-light);
--text-decoration: underline 1px dashed var(--col);
text-decoration: var(--text-decoration);
}
.tooltip-display-text-container:hover .tooltip {
display: inline-block;
}