Fix stack: 100vh slots, single sticky per layer, tabs not separate.

Removes dual-sticky tabs and tiny scroll ticks that broke folder overlap.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-20 23:01:00 -04:00
co-authored by Cursor
parent 07dffaa323
commit acfc6ddd86
11 changed files with 105 additions and 116 deletions
-1
View File
@@ -6,7 +6,6 @@
<title>Levkin — Stack Trace</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="../shared/stack-vars.css" />
<link rel="stylesheet" href="./trace.css" />
</head>
<body>
+10 -13
View File
@@ -1,4 +1,5 @@
@import '../shared/stack-vars.css';
@import '../shared/stack-layout.css';
* { box-sizing: border-box; margin: 0; padding: 0; }
@@ -25,17 +26,13 @@ body {
padding-top: var(--stack-nav);
}
.scroll-section { height: var(--stack-tick); position: relative; }
.scroll-section--final { height: 12vh; min-height: 200px; }
.stop { height: 1px; margin-bottom: 4rem; }
.frame {
position: sticky;
margin: 0 0.5rem calc(-1 * var(--stack-overlap)) 0.5rem;
margin: 0 0.5rem;
border-left: 3px solid #3a3a44;
background: #141418;
padding: 0.65rem 0 0.65rem 1rem;
min-height: 180px;
min-height: calc(100vh - var(--stack-nav) - 5rem);
box-shadow: 0 8px 0 #0a0a0c, 0 14px 28px rgba(0,0,0,0.45);
}
@@ -59,13 +56,13 @@ body {
.frame-body p { color: #6b6966; font-size: 0.74rem; }
.frame-body a { color: #8b9cb3; text-decoration: none; }
.f0 { top: calc(var(--stack-nav) + var(--stack-stick)); z-index: 1; border-color: #c4a574; }
.f1 { top: calc(var(--stack-nav) + var(--stack-stick) + var(--stack-step)); z-index: 2; }
.f2 { top: calc(var(--stack-nav) + var(--stack-stick) + var(--stack-step) * 2); z-index: 3; }
.f3 { top: calc(var(--stack-nav) + var(--stack-stick) + var(--stack-step) * 3); z-index: 4; }
.f4 { top: calc(var(--stack-nav) + var(--stack-stick) + var(--stack-step) * 4); z-index: 5; border-color: #6b8b9b; }
.f5 { top: calc(var(--stack-nav) + var(--stack-stick) + var(--stack-step) * 5); z-index: 6; }
.f6 { top: calc(var(--stack-nav) + var(--stack-stick) + var(--stack-step) * 6); z-index: 7; border-color: #7eb87a; margin-bottom: 0; }
.f0 { top: calc(var(--stack-stick) + var(--stack-step) * 0); z-index: 10; border-color: #c4a574; }
.f1 { top: calc(var(--stack-stick) + var(--stack-step) * 1); z-index: 11; }
.f2 { top: calc(var(--stack-stick) + var(--stack-step) * 2); z-index: 12; }
.f3 { top: calc(var(--stack-stick) + var(--stack-step) * 3); z-index: 13; }
.f4 { top: calc(var(--stack-stick) + var(--stack-step) * 4); z-index: 14; border-color: #6b8b9b; }
.f5 { top: calc(var(--stack-stick) + var(--stack-step) * 5); z-index: 15; }
.f6 { top: calc(var(--stack-stick) + var(--stack-step) * 6); z-index: 16; border-color: #7eb87a; }
.foot {
display: flex; justify-content: space-between;