41 lines
816 B
CSS
41 lines
816 B
CSS
/* ========================================
|
|
FOLDER TREE
|
|
======================================== */
|
|
.folder-tree {
|
|
background: var(--tree-bg);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 8px;
|
|
padding: 1rem;
|
|
margin: 1rem 0;
|
|
font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
|
|
font-size: 0.85rem;
|
|
max-height: 350px;
|
|
overflow-y: auto;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.tree-item {
|
|
margin: 0.2rem 0;
|
|
white-space: pre;
|
|
font-family: inherit;
|
|
}
|
|
|
|
.tree-current {
|
|
background: var(--tree-current-bg);
|
|
color: white;
|
|
padding: 0.2rem 0.4rem;
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.tree-link {
|
|
color: var(--link-color);
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.tree-link:hover {
|
|
text-decoration: underline;
|
|
color: var(--link-hover);
|
|
}
|