Spaces:
Sleeping
Sleeping
File size: 2,460 Bytes
43024e4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | .left-panel {
width: 220px;
background: #0e0e1f;
border-right: 1px solid #2a2a4a;
display: flex;
flex-direction: column;
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
overflow: hidden;
}
.panel-header {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
background: #16162a;
border-bottom: 1px solid #2a2a4a;
font-weight: 700;
font-size: 10px;
letter-spacing: 2px;
color: #8888cc;
}
.panel-icon {
color: #6666ff;
font-size: 14px;
}
.drop-zone {
margin: 12px;
border: 1.5px dashed #3a3a6a;
border-radius: 8px;
padding: 16px 10px;
text-align: center;
cursor: pointer;
transition: all 0.2s;
background: #13132a;
}
.drop-zone:hover, .drop-zone--active {
border-color: #6666ff;
background: #1a1a3a;
}
.drop-zone-icon {
font-size: 22px;
color: #6666ff;
margin-bottom: 6px;
}
.drop-zone-text {
color: #aaaadd;
font-size: 10px;
font-weight: 700;
letter-spacing: 1px;
margin-bottom: 3px;
}
.drop-zone-sub {
color: #555577;
font-size: 9px;
}
.object-list-header {
padding: 8px 14px 4px;
font-size: 9px;
letter-spacing: 2px;
color: #555577;
font-weight: 700;
}
.object-list {
flex: 1;
overflow-y: auto;
padding: 4px 8px;
}
.object-list::-webkit-scrollbar { width: 4px; }
.object-list::-webkit-scrollbar-track { background: transparent; }
.object-list::-webkit-scrollbar-thumb { background: #333366; border-radius: 2px; }
.empty-list {
color: #444466;
text-align: center;
padding: 20px 10px;
font-size: 10px;
}
.object-item {
display: flex;
align-items: center;
gap: 7px;
padding: 7px 8px;
border-radius: 5px;
cursor: pointer;
color: #8888bb;
transition: all 0.15s;
margin-bottom: 2px;
border: 1px solid transparent;
}
.object-item:hover {
background: #1e1e3a;
color: #bbbbee;
}
.object-item--selected {
background: #1a1a4a;
border-color: #5555cc;
color: #ccccff;
}
.obj-icon { color: #6666cc; font-size: 13px; }
.obj-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
.anim-badge {
background: #2a2a6a;
color: #8888ff;
font-size: 8px;
padding: 2px 4px;
border-radius: 3px;
font-weight: 700;
}
.obj-delete {
background: none;
border: none;
color: #444466;
cursor: pointer;
font-size: 10px;
padding: 2px 4px;
border-radius: 3px;
transition: all 0.15s;
}
.obj-delete:hover {
background: #4a1a1a;
color: #ff6666;
}
|