Files
esengine/packages/editor/editor-app/src/styles/FileTree.css

157 lines
2.7 KiB
CSS
Raw Normal View History

.file-tree-toolbar {
display: flex;
align-items: center;
gap: 4px;
padding: 0 8px;
background: #252526;
border-bottom: 1px solid #3e3e3e;
height: 26px;
}
.file-tree-toolbar-btn {
display: flex;
align-items: center;
justify-content: center;
padding: 4px 8px;
background: transparent;
border: 1px solid transparent;
border-radius: 3px;
color: #cccccc;
cursor: pointer;
transition: all 0.2s;
}
.file-tree-toolbar-btn:hover {
background: #2a2d2e;
border-color: #3e3e3e;
}
.file-tree-toolbar-btn:active {
background: #37373d;
}
2025-10-15 10:08:15 +08:00
.file-tree {
height: calc(100% - 32px);
2025-10-15 10:08:15 +08:00
overflow-y: auto;
overflow-x: hidden;
background: #1e1e1e;
color: #cccccc;
user-select: none;
}
.file-tree::-webkit-scrollbar {
width: 10px;
}
.file-tree::-webkit-scrollbar-track {
background: #1e1e1e;
}
.file-tree::-webkit-scrollbar-thumb {
background: #424242;
border-radius: 5px;
}
.file-tree::-webkit-scrollbar-thumb:hover {
background: #4e4e4e;
}
.file-tree.loading,
.file-tree.empty {
display: flex;
align-items: center;
justify-content: center;
color: #858585;
2025-10-17 23:47:04 +08:00
font-size: var(--font-size-sm);
2025-10-15 10:08:15 +08:00
}
.tree-node {
display: flex;
align-items: center;
padding: 4px 8px;
cursor: pointer;
2025-10-17 23:47:04 +08:00
font-size: var(--font-size-base);
2025-10-15 10:08:15 +08:00
white-space: nowrap;
transition: all 0.15s ease;
position: relative;
}
.tree-node[draggable="true"] {
cursor: grab;
}
.tree-node[draggable="true"]:active {
cursor: grabbing;
2025-10-15 10:08:15 +08:00
}
.tree-node:hover {
background: #2a2d2e;
}
.tree-node.selected {
background: #37373d;
}
/* 拖拽时的样式 */
.tree-node.dragging {
opacity: 0.5;
}
.tree-node[draggable="true"]:hover {
background: #2a2d2e;
box-shadow: inset 2px 0 0 rgba(74, 222, 128, 0.5);
}
2025-10-15 10:08:15 +08:00
.tree-arrow {
width: 16px;
height: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 4px;
2025-10-17 23:47:04 +08:00
font-size: var(--font-size-xs);
2025-10-15 10:08:15 +08:00
color: #cccccc;
}
.tree-icon {
margin-right: 6px;
2025-10-17 23:47:04 +08:00
font-size: var(--font-size-md);
2025-10-15 10:08:15 +08:00
}
/* 系统文件夹特殊标记 */
.tree-icon .system-folder-icon {
filter: drop-shadow(0 0 2px rgba(66, 165, 245, 0.5));
animation: subtle-pulse-tree 3s ease-in-out infinite;
}
@keyframes subtle-pulse-tree {
0%, 100% {
filter: drop-shadow(0 0 2px rgba(66, 165, 245, 0.5));
}
50% {
filter: drop-shadow(0 0 4px rgba(66, 165, 245, 0.7));
}
}
2025-10-15 10:08:15 +08:00
.tree-label {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
}
.tree-children {
/* Children are indented via inline style */
}
.tree-rename-input {
flex: 1;
background: #3c3c3c;
border: 1px solid #007acc;
border-radius: 2px;
padding: 2px 4px;
color: #cccccc;
font-size: var(--font-size-base);
font-family: inherit;
outline: none;
}