refactor: Improve all git operations, add stash support, add improved pull request flow, add worktree file copy options, address code review comments, add cherry pick options

This commit is contained in:
gsxdsm
2026-02-17 22:02:58 -08:00
parent f4e87d4c25
commit 9af63bc1ef
89 changed files with 6811 additions and 351 deletions

View File

@@ -396,30 +396,19 @@
/* iOS Safari: position:fixed on body prevents pull-to-refresh and overscroll bounce.
Scoped to touch devices only to avoid breaking desktop browser behaviours. */
`@media` (hover: none) and (pointer: coarse) {
@media (hover: none) and (pointer: coarse) {
html,
body {
position: fixed;
}
}
/* App container: full viewport, no scroll, safe-area insets for notched devices */
#app {
height: 100%;
height: 100dvh;
overflow: hidden;
overscroll-behavior: none;
}
/* Prevent pull-to-refresh and rubber-band scrolling on mobile */
@supports (-webkit-touch-callout: none) {
body {
/* iOS Safari specific: prevent overscroll bounce */
-webkit-touch-callout: none;
}
}
/* Safe area insets for devices with notches/home indicators (viewport-fit=cover) */
#app {
padding-top: env(safe-area-inset-top, 0px);
padding-bottom: env(safe-area-inset-bottom, 0px);
padding-left: env(safe-area-inset-left, 0px);
@@ -559,6 +548,11 @@
@apply backdrop-blur-md border-white/10;
}
/* Disable iOS long-press context menu - apply only to non-interactive chrome elements */
.no-touch-callout {
-webkit-touch-callout: none;
}
.glass-subtle {
@apply backdrop-blur-sm border-white/5;
}