This commit is contained in:
+344
-30
@@ -1039,15 +1039,15 @@ button {
|
||||
|
||||
.plans-floating-panel {
|
||||
grid-template-rows: auto minmax(0, 1fr);
|
||||
width: min(680px, calc(100vw - 28px));
|
||||
width: min(980px, calc(100vw - 28px));
|
||||
}
|
||||
|
||||
.plans-panel-body {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
|
||||
gap: 16px;
|
||||
grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
|
||||
gap: 20px;
|
||||
min-height: 0;
|
||||
padding: 16px;
|
||||
padding: 20px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
@@ -1106,10 +1106,8 @@ button.secondary {
|
||||
flex-direction: column;
|
||||
gap: 14px;
|
||||
margin-top: auto;
|
||||
position: sticky;
|
||||
bottom: -28px;
|
||||
padding-bottom: 28px;
|
||||
background: linear-gradient(180deg, rgba(247, 241, 220, 0) 0%, var(--cream) 22%, var(--cream) 100%);
|
||||
padding-top: 24px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.sidebar-tool-buttons {
|
||||
@@ -1119,6 +1117,12 @@ button.secondary {
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
gap: 8px;
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
z-index: 2;
|
||||
padding-top: 14px;
|
||||
padding-bottom: 2px;
|
||||
background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
|
||||
}
|
||||
|
||||
.sidebar-tool-button {
|
||||
@@ -1208,6 +1212,11 @@ button.secondary {
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.sidebar-panel .section-title-row {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.config-form {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
@@ -1248,6 +1257,77 @@ button.secondary {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.plan-creator-shell,
|
||||
.plans-dashboard-shell {
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.plan-creator-card {
|
||||
display: grid;
|
||||
gap: 18px;
|
||||
padding: 20px;
|
||||
border: 1px solid rgba(212, 175, 55, 0.28);
|
||||
border-radius: 22px;
|
||||
background:
|
||||
radial-gradient(circle at top right, rgba(240, 214, 129, 0.18), transparent 34%),
|
||||
linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(247, 241, 220, 0.94));
|
||||
box-shadow: 0 20px 40px rgba(38, 58, 27, 0.08);
|
||||
}
|
||||
|
||||
.plan-creator-copy {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.plan-creator-copy h3 {
|
||||
margin: 0;
|
||||
color: var(--forest);
|
||||
font-family: "Playfair Display", Georgia, serif;
|
||||
font-size: 28px;
|
||||
line-height: 1.02;
|
||||
}
|
||||
|
||||
.plan-creator-copy p:last-child {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.plan-form-grid {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.plan-form-grid textarea {
|
||||
min-height: 96px;
|
||||
}
|
||||
|
||||
.plan-form-split {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.plan-form-hint {
|
||||
display: grid;
|
||||
align-content: start;
|
||||
gap: 4px;
|
||||
padding: 12px 13px;
|
||||
border: 1px dashed rgba(52, 83, 38, 0.24);
|
||||
border-radius: 14px;
|
||||
background: rgba(237, 243, 223, 0.68);
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.plan-form-hint strong {
|
||||
color: var(--forest);
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.ollama-status {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
@@ -1482,36 +1562,175 @@ pre {
|
||||
|
||||
.plans-dashboard {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
margin-top: 14px;
|
||||
gap: 14px;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.plans-overview {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: space-between;
|
||||
gap: 18px;
|
||||
padding: 6px 2px 10px;
|
||||
}
|
||||
|
||||
.plans-overview h3 {
|
||||
margin: 4px 0 0;
|
||||
color: var(--forest);
|
||||
font-family: "Playfair Display", Georgia, serif;
|
||||
font-size: 31px;
|
||||
line-height: 1.04;
|
||||
}
|
||||
|
||||
.plan-overview-copy {
|
||||
max-width: 48ch;
|
||||
margin: 8px 0 0;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.plan-overview-stats {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.plan-overview-stat {
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
min-width: 110px;
|
||||
padding: 12px 14px;
|
||||
border: 1px solid rgba(212, 175, 55, 0.28);
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 250, 240, 0.78);
|
||||
box-shadow: 0 12px 24px rgba(38, 58, 27, 0.06);
|
||||
}
|
||||
|
||||
.plan-overview-stat-value {
|
||||
color: var(--forest);
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.plan-overview-stat-label {
|
||||
color: var(--muted);
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.plan-empty-state {
|
||||
padding: 22px;
|
||||
border: 1px dashed rgba(52, 83, 38, 0.24);
|
||||
border-radius: 22px;
|
||||
background: rgba(255, 253, 247, 0.72);
|
||||
}
|
||||
|
||||
.plan-empty-state h4 {
|
||||
margin: 0 0 6px;
|
||||
color: var(--forest);
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.plan-empty-state p {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.plan-card {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
padding: 13px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 250, 240, 0.82);
|
||||
gap: 12px;
|
||||
padding: 16px;
|
||||
border: 1px solid rgba(221, 206, 176, 0.92);
|
||||
border-radius: 20px;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(251, 244, 223, 0.88));
|
||||
box-shadow: 0 16px 30px rgba(38, 58, 27, 0.06);
|
||||
}
|
||||
|
||||
.plan-card.active {
|
||||
border-color: rgba(52, 83, 38, 0.42);
|
||||
background: #edf3df;
|
||||
border-color: rgba(52, 83, 38, 0.32);
|
||||
background:
|
||||
radial-gradient(circle at top right, rgba(190, 212, 144, 0.22), transparent 26%),
|
||||
linear-gradient(180deg, rgba(247, 250, 238, 0.98), rgba(237, 243, 223, 0.96));
|
||||
}
|
||||
|
||||
.plan-card-heading {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.plan-card h3 {
|
||||
margin: 0;
|
||||
color: var(--forest);
|
||||
font-size: 16px;
|
||||
line-height: 1.25;
|
||||
font-size: 19px;
|
||||
line-height: 1.18;
|
||||
}
|
||||
|
||||
.plan-status-badge {
|
||||
flex: 0 0 auto;
|
||||
padding: 6px 10px;
|
||||
border-radius: 999px;
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.plan-status-active {
|
||||
border-color: rgba(52, 83, 38, 0.28);
|
||||
background: rgba(237, 243, 223, 0.9);
|
||||
color: var(--forest);
|
||||
}
|
||||
|
||||
.plan-status-badge.plan-status-active {
|
||||
border: 1px solid rgba(52, 83, 38, 0.24);
|
||||
}
|
||||
|
||||
.plan-status-paused {
|
||||
border-color: rgba(196, 170, 115, 0.42);
|
||||
background: rgba(255, 246, 220, 0.86);
|
||||
color: #7a5a18;
|
||||
}
|
||||
|
||||
.plan-status-badge.plan-status-paused {
|
||||
border: 1px solid rgba(196, 170, 115, 0.34);
|
||||
}
|
||||
|
||||
.plan-status-needs-input {
|
||||
border-color: rgba(159, 60, 50, 0.24);
|
||||
background: rgba(255, 241, 237, 0.88);
|
||||
color: var(--danger);
|
||||
}
|
||||
|
||||
.plan-status-badge.plan-status-needs-input {
|
||||
border: 1px solid rgba(159, 60, 50, 0.22);
|
||||
}
|
||||
|
||||
.plan-status-canceled,
|
||||
.plan-status-completed {
|
||||
opacity: 0.84;
|
||||
}
|
||||
|
||||
.plan-status-badge.plan-status-canceled,
|
||||
.plan-status-badge.plan-status-completed {
|
||||
border: 1px solid rgba(111, 91, 80, 0.18);
|
||||
background: rgba(255, 250, 240, 0.82);
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.plan-meta,
|
||||
.plan-line {
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
line-height: 1.4;
|
||||
font-size: 13px;
|
||||
line-height: 1.55;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
@@ -1525,33 +1744,82 @@ pre {
|
||||
.plan-pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
min-height: 24px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid rgba(52, 83, 38, 0.24);
|
||||
min-height: 26px;
|
||||
padding: 4px 10px;
|
||||
border: 1px solid rgba(52, 83, 38, 0.14);
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 250, 240, 0.8);
|
||||
background: rgba(255, 250, 240, 0.88);
|
||||
color: var(--forest);
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.plan-metrics {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.plan-metric {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
padding: 11px 12px;
|
||||
border: 1px solid rgba(221, 206, 176, 0.78);
|
||||
border-radius: 14px;
|
||||
background: rgba(255, 253, 247, 0.76);
|
||||
}
|
||||
|
||||
.plan-metric-label {
|
||||
color: var(--muted);
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.plan-metric-value {
|
||||
color: var(--brown);
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.plan-controls button {
|
||||
flex: 1 1 80px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.plan-detail {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 12px;
|
||||
padding-top: 10px;
|
||||
border-top: 1px solid rgba(221, 206, 176, 0.92);
|
||||
}
|
||||
|
||||
.plan-detail-loading {
|
||||
grid-template-columns: 1fr;
|
||||
padding: 16px;
|
||||
border: 1px dashed rgba(52, 83, 38, 0.2);
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 253, 247, 0.72);
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.plan-section {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.plan-detail h4 {
|
||||
margin: 0;
|
||||
color: var(--forest);
|
||||
font-size: 13px;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.plan-list {
|
||||
@@ -1563,15 +1831,29 @@ pre {
|
||||
}
|
||||
|
||||
.plan-list li {
|
||||
padding: 8px;
|
||||
display: grid;
|
||||
gap: 5px;
|
||||
padding: 10px 11px;
|
||||
border: 1px solid rgba(221, 206, 176, 0.72);
|
||||
border-radius: 8px;
|
||||
background: rgba(255, 253, 247, 0.72);
|
||||
border-radius: 12px;
|
||||
background: rgba(255, 253, 247, 0.8);
|
||||
color: var(--brown);
|
||||
font-size: 12px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.plan-list-title {
|
||||
color: var(--forest);
|
||||
font-size: 12px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.plan-list-body {
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.decline-button {
|
||||
border: 1px solid var(--line-strong);
|
||||
background: #fff9e9;
|
||||
@@ -1751,6 +2033,38 @@ pre {
|
||||
grid-column: 1;
|
||||
}
|
||||
|
||||
.plans-overview {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.plan-detail {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.plan-form-split,
|
||||
.plan-metrics {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.plan-card-heading {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.plan-status-badge {
|
||||
align-self: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.plans-floating-panel {
|
||||
width: min(100vw - 18px, 980px);
|
||||
right: 9px;
|
||||
bottom: 9px;
|
||||
}
|
||||
|
||||
.plans-panel-body {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user