26 lines
571 B
CSS
26 lines
571 B
CSS
.path-tooltip {
|
|
position: fixed;
|
|
bottom: 8px;
|
|
left: calc(var(--sidebar-width) + 8px);
|
|
z-index: 5;
|
|
|
|
max-width: 120ch;
|
|
padding: 4px 10px;
|
|
border-radius: 3px;
|
|
|
|
background-color: var(--color-bg-subtle);
|
|
border: 1px solid var(--color-border-faint);
|
|
color: var(--color-text-muted);
|
|
font-size: 0.75rem;
|
|
font-family: monospace;
|
|
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
pointer-events: none;
|
|
|
|
/* avoid blinking when pointer change items */
|
|
transition: display 0.2s allow-discrete;
|
|
}
|