feat: add governed ownership workflows and admin tree navigation

This commit is contained in:
2026-07-30 17:42:05 +02:00
parent 9b88ae388b
commit f0898fcdee
17 changed files with 2857 additions and 1 deletions
+42
View File
@@ -73,6 +73,48 @@
.section-link:hover, .section-link.active { background: var(--sidebar-hover-bg); color: var(--text-hover-strong); }
.section-link.active { border-left: 3px solid var(--accent); font-weight: 700; }
.section-link.subtle { font-size: 13px; }
.tree-subnav { padding: 10px 0; }
.tree-subnav-disclosure,
.tree-subnav-link {
width: calc(100% + 3px);
min-height: 38px;
box-sizing: border-box;
border: 0;
margin-left: -3px;
padding: 7px 10px 7px calc(12px + (var(--tree-depth, 0) * 14px));
background: transparent;
color: var(--text-subtle);
font: inherit;
text-align: left;
cursor: pointer;
}
.tree-subnav-disclosure {
display: flex;
align-items: center;
gap: 6px;
color: var(--text-strong);
font-size: 13px;
font-weight: 700;
}
.tree-subnav-disclosure svg { flex: 0 0 auto; }
.tree-subnav-link {
padding-left: calc(34px + (var(--tree-depth, 0) * 14px));
font-size: 13px;
}
.tree-subnav-disclosure:hover,
.tree-subnav-link:hover,
.tree-subnav-link.active {
background: var(--sidebar-hover-bg);
color: var(--text-hover-strong);
}
.tree-subnav-link.active {
border-left: 3px solid var(--accent);
font-weight: 700;
}
.tree-subnav-link.subtle { color: var(--muted); }
.tree-subnav-branch.contains-active > .tree-subnav-disclosure {
color: var(--text-strong);
}
.workspace-content { min-width: 0; max-width: 100%; min-height: 0; overflow: auto; }
.page-scroll-viewport { width: 100%; height: 100%; min-width: 0; min-height: 0; overflow: auto; }
.ui-no-sticky-section-sidebars .app-content { overflow: auto; }