25 lines
482 B
SCSS
25 lines
482 B
SCSS
.rbf-tooltip {
|
|
position: fixed;
|
|
z-index: 3;
|
|
background: color-mix(in srgb, var(--active-bg) 95%, transparent);
|
|
border-radius: 4px;
|
|
box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
|
|
color: var(--tooltip-grey);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
padding: 10px 15px;
|
|
text-align: left;
|
|
pointer-events: none;
|
|
|
|
.badge {
|
|
margin-right: 1em;
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.td-width {
|
|
padding-right: 10px;
|
|
} |