Auth for submodule ops, revision checkout, central confirm dialog, unified sidebar sizing #46

Merged
Christoph merged 10 commits from UI/UX-enhance into main 2026-09-18 08:26:46 +00:00
Showing only changes of commit 098e9c5fb9 - Show all commits
+19 -36
View File
@@ -141,11 +141,7 @@
html, body, #app { width: 100%; height: 100%; margin: 0; }
* { scrollbar-width: thin; scrollbar-color: var(--app-scrollbar-thumb) transparent; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--app-scrollbar-thumb); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--app-scrollbar-thumb-hover); }
/* Scrollbars are styled app-wide at the end of this file. */
html { color-scheme: var(--app-color-scheme); }
body {
@@ -9255,41 +9251,28 @@ section > header.page-header.page-header {
.left-sidebar .tags-panel .tag-create-form input[aria-label="Tag message"] { grid-column: 2 / -1; grid-row: 2; }
/* --- Sidebar scrollbars ---------------------------------------------------
Slim, rounded thumb that brightens while hovering a scroll area.
scrollbar-width/color are reset so WebKit uses the pseudo-element styling.
The panel lists are named explicitly so they win over any other rule. */
.left-sidebar,
.left-sidebar *,
.left-sidebar .sidebar-tags-list,
.left-sidebar .sidebar-worktree-list,
.left-sidebar .stash-list,
.left-sidebar .explorer-list {
scrollbar-width: auto !important;
scrollbar-color: auto !important;
/* --- Scrollbars -----------------------------------------------------------
One look everywhere: a slim, rounded thumb that brightens while the pointer
is over the scrolling area. scrollbar-width/color are reset to auto so
WebKit uses the pseudo-element styling below instead of the native bar. */
:root,
* {
scrollbar-width: auto;
scrollbar-color: auto;
}
.left-sidebar ::-webkit-scrollbar,
.left-sidebar .sidebar-tags-list::-webkit-scrollbar,
.left-sidebar .sidebar-worktree-list::-webkit-scrollbar,
.left-sidebar .stash-list::-webkit-scrollbar,
.left-sidebar .explorer-list::-webkit-scrollbar { width: 8px !important; height: 8px !important; background: transparent; }
.left-sidebar ::-webkit-scrollbar-track,
.left-sidebar .sidebar-tags-list::-webkit-scrollbar-track,
.left-sidebar .sidebar-worktree-list::-webkit-scrollbar-track,
.left-sidebar .stash-list::-webkit-scrollbar-track,
.left-sidebar .explorer-list::-webkit-scrollbar-track { margin: 6px 0; background: transparent; }
.left-sidebar ::-webkit-scrollbar-corner { background: transparent; }
.left-sidebar ::-webkit-scrollbar-thumb,
.left-sidebar .sidebar-tags-list::-webkit-scrollbar-thumb,
.left-sidebar .sidebar-worktree-list::-webkit-scrollbar-thumb,
.left-sidebar .stash-list::-webkit-scrollbar-thumb,
.left-sidebar .explorer-list::-webkit-scrollbar-thumb {
::-webkit-scrollbar { width: 8px; height: 8px; background: transparent; }
::-webkit-scrollbar-track { margin: 6px 0; background: transparent; }
::-webkit-scrollbar-corner { background: transparent; }
::-webkit-scrollbar-thumb {
min-height: 28px;
border: 2px solid transparent;
border-radius: 999px;
background-clip: padding-box;
background-color: color-mix(in srgb, var(--app-scrollbar-thumb) 55%, transparent);
}
.left-sidebar :hover::-webkit-scrollbar-thumb { background-color: var(--app-scrollbar-thumb); }
.left-sidebar ::-webkit-scrollbar-thumb:hover,
.left-sidebar ::-webkit-scrollbar-thumb:active { background-color: var(--app-scrollbar-thumb-hover); }
:hover::-webkit-scrollbar-thumb { background-color: var(--app-scrollbar-thumb); }
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active { background-color: var(--app-scrollbar-thumb-hover); }
/* Tab strips keep their hidden scrollbars. */
.repo-tabs-scroll { scrollbar-width: none; }