Add hierarchical work list table

This commit is contained in:
Codex
2026-08-07 14:39:31 +08:00
parent 94b003356e
commit b0d733cc2a
6 changed files with 787 additions and 28 deletions

View File

@@ -1,32 +1,41 @@
.approvalLauncher {
.launcherStack {
position: fixed;
right: 26px;
bottom: 26px;
z-index: 45;
display: flex;
flex-direction: column;
gap: 10px;
}
.launcher {
width: 208px;
min-height: 64px;
min-height: 61px;
display: flex;
align-items: center;
gap: 11px;
padding: 10px 12px;
border: 1px solid #295fcf;
padding: 9px 12px;
border: 1px solid;
border-radius: 12px;
background: #3276f6;
box-shadow: 0 16px 34px rgba(30, 86, 196, .28);
box-shadow: 0 15px 32px rgba(30, 49, 86, .22);
color: white;
text-decoration: none;
transition: transform .18s ease, background .18s ease;
}
.approvalLauncher:hover { transform: translateY(-2px); background: #215ecb; }
.launcherIcon { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; background: rgba(255,255,255,.16); font-size: 18px; }
.approvalLauncher > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.approvalLauncher strong { font-size: 12px; }
.approvalLauncher small { color: rgba(255,255,255,.72); font-size: 9px; }
.approvalLauncher b { font-size: 17px; }
.launcher:hover { transform: translateY(-2px); }
.approval { border-color: #295fcf; background: #3276f6; }
.approval:hover { background: #215ecb; }
.worklist { border-color: #273a59; background: #17263d; }
.worklist:hover { background: #223655; }
.launcherIcon { width: 35px; height: 35px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; background: rgba(255,255,255,.14); font-size: 17px; }
.launcher > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.launcher strong { font-size: 11px; }
.launcher small { color: rgba(255,255,255,.7); font-size: 8px; }
.launcher b { font-size: 16px; }
@media (max-width: 620px) {
.approvalLauncher { right: 14px; bottom: 14px; width: 54px; min-height: 54px; padding: 9px; border-radius: 50%; }
.approvalLauncher > span:nth-child(2), .approvalLauncher b { display: none; }
.launcherStack { right: 14px; bottom: 14px; gap: 8px; }
.launcher { width: 52px; min-height: 52px; padding: 8px; border-radius: 50%; }
.launcher > span:nth-child(2), .launcher b { display: none; }
.launcherIcon { width: 34px; height: 34px; background: transparent; }
}