You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: frontend/index.html
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -763,6 +763,10 @@
763
763
border-left-color:var(--accent-primary);
764
764
}
765
765
766
+
.hover-accent.active:hover {
767
+
transform:translateX(2px);
768
+
}
769
+
766
770
/* Tag chip - same effect but no margin */
767
771
.tag-chip {
768
772
border-left:3px solid transparent;
@@ -1586,7 +1590,7 @@
1586
1590
</div>
1587
1591
1588
1592
<!-- Folders (rendered recursively for unlimited nesting) -->
1589
-
<templatex-for="[folderKey, folder] in Object.entries(folderTree).filter(([k]) => k !== '__root__').sort((a, b) => a[1].name.toLowerCase().localeCompare(b[1].name.toLowerCase()))" :key="folderKey">
1593
+
<templatex-for="[folderKey, folder] in Object.entries(folderTree).filter(([k, v]) => k !== '__root__' && (!hideUnderscoreFolders || !v.name.startsWith('_'))).sort((a, b) => a[1].name.toLowerCase().localeCompare(b[1].name.toLowerCase()))" :key="folderKey">
0 commit comments