mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-11-19 23:56:11 +00:00
55 lines
832 B
SCSS
55 lines
832 B
SCSS
.TooltipActive {
|
|
pointer-events: auto !important;
|
|
position: relative;
|
|
z-index: 3;
|
|
}
|
|
|
|
.hoverTarget {
|
|
padding: 0.5rem;
|
|
margin: -0.5rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
.localCounter {
|
|
mix-blend-mode: screen;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1px;
|
|
position: relative;
|
|
top: 1px;
|
|
color: var(--rf-node-local-counter);
|
|
|
|
&.hasUserCharacters {
|
|
color: var(--rf-has-user-characters);
|
|
}
|
|
|
|
& > i {
|
|
font-size: 9px;
|
|
position: relative;
|
|
}
|
|
|
|
& > span {
|
|
font-size: 9px;
|
|
line-height: 9px;
|
|
font-weight: var(--rf-local-counter-font-weight, 500);
|
|
|
|
@-moz-document url-prefix() {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.Pathfinder {
|
|
.localCounter {
|
|
@-moz-document url-prefix() {
|
|
top: 0;
|
|
}
|
|
|
|
& > span {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
}
|
|
}
|