Story 3.2 done

This commit is contained in:
2026-05-23 18:23:48 +02:00
parent d175f92806
commit a1e8886fce
66 changed files with 18258 additions and 1650 deletions
+17 -7
View File
@@ -93,7 +93,7 @@
&:hover { background: var(--sp-accent, #4a6f9c); color: #fff; border-color: transparent; }
}
// ── Footer (disabled preset actions) ─────────────────────────────────────
// ── Footer (preset actions) ────────────────────────────────────────────
.directors-board__footer {
display: flex;
gap: 8px;
@@ -101,16 +101,26 @@
border-top: 1px solid var(--sp-border);
flex-shrink: 0;
button {
&-btn {
flex: 1;
font-size: 12px;
color: var(--sp-text-muted);
background: transparent;
border: 1px solid var(--sp-border);
background: var(--sp-accent, #4a6f9c);
color: #fff;
border: none;
border-radius: 3px;
padding: 4px 8px;
cursor: not-allowed;
opacity: 0.5;
cursor: pointer;
transition: opacity 0.15s;
&:hover { opacity: 0.85; }
&:active { opacity: 0.7; }
&[disabled] {
cursor: not-allowed;
opacity: 0.5;
background: transparent;
color: var(--sp-text-muted);
border: 1px solid var(--sp-border);
}
}
}
}