Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ jobs:
CHROMIUM_REQUIRE=1 BASE_URL=http://localhost:13581 node test-nav-priority-1102-e2e.js 2>&1 | tee -a e2e-output.txt
CHROMIUM_REQUIRE=1 BASE_URL=http://localhost:13581 node test-nav-more-floor-1139-e2e.js 2>&1 | tee -a e2e-output.txt
CHROMIUM_REQUIRE=1 BASE_URL=http://localhost:13581 node test-bottom-nav-1061-e2e.js 2>&1 | tee -a e2e-output.txt
CHROMIUM_REQUIRE=1 BASE_URL=http://localhost:13581 node test-gestures-1062-e2e.js 2>&1 | tee -a e2e-output.txt
CHROMIUM_REQUIRE=1 BASE_URL=http://localhost:13581 node test-gestures-1185-scroll-discriminator-e2e.js 2>&1 | tee -a e2e-output.txt
BASE_URL=http://localhost:13581 node test-channel-fluid-e2e.js 2>&1 | tee -a e2e-output.txt
BASE_URL=http://localhost:13581 node test-table-fluid-e2e.js 2>&1 | tee -a e2e-output.txt
BASE_URL=http://localhost:13581 node test-charts-fluid-1058-e2e.js 2>&1 | tee -a e2e-output.txt
Expand Down
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
<script src="app.js?v=__BUST__"></script>
<script src="bottom-nav.js?v=__BUST__"></script>
<script src="nav-drawer.js?v=__BUST__"></script>
<script src="touch-gestures.js?v=__BUST__"></script>
<script src="url-state.js?v=__BUST__"></script>
<script src="home.js?v=__BUST__"></script>
<script src="table-sort.js?v=__BUST__"></script>
Expand Down
52 changes: 52 additions & 0 deletions public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3502,3 +3502,55 @@ td[data-filter-field] { cursor: context-menu; }
.nav-drawer-backdrop { transition: none; }
}
/* === end #1064 ====================================================== */

/* === #1062 Touch Gestures ============================================
* Visual affordances for touch-gestures.js. CSS variables only — no
* hardcoded colors. body owns vertical scroll natively (touch-action: pan-y);
* the bottom-nav opts out so we manage horizontal swipes on it.
* ==================================================================== */
body { touch-action: pan-y; }
[data-bottom-nav] { touch-action: none; }

.row-swiping { transition: transform 180ms ease-out; }
.row-action-overlay {
position: fixed;
z-index: 1500;
display: flex;
align-items: stretch;
gap: 0;
background: var(--card-bg, #1a1a1a);
border: 1px solid var(--border, #333);
border-radius: 6px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
overflow: hidden;
opacity: 0;
transform: translateX(40px);
transition: opacity 180ms ease-out, transform 180ms ease-out;
pointer-events: auto;
}
.row-action-overlay.row-action-overlay-open {
opacity: 1;
transform: translateX(0);
}
.row-action-overlay[hidden] { display: none; }
.row-action-btn {
flex: 1 1 auto;
background: transparent;
border: none;
color: var(--text, #e7e7e7);
padding: 0 12px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
min-height: 48px;
border-right: 1px solid var(--border, #333);
}
.row-action-btn:last-child { border-right: none; }
.row-action-btn:hover { background: var(--bg-hover, rgba(120, 160, 255, 0.12)); }
.row-action-btn:active { background: var(--accent-bg, rgba(0, 122, 255, 0.18)); }

@media (prefers-reduced-motion: reduce) {
.row-swiping,
.row-action-overlay { transition: none !important; }
}
/* === end #1062 ====================================================== */ (feat(#1062): green — implement gesture system)
Loading