706 lines
12 KiB
CSS
706 lines
12 KiB
CSS
|
|
.workbench {
|
||
|
|
min-width: 0;
|
||
|
|
display: grid;
|
||
|
|
gap: 16px;
|
||
|
|
padding-bottom: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-hero {
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 228px minmax(0, 1fr);
|
||
|
|
gap: 18px;
|
||
|
|
padding: 20px 24px 20px 18px;
|
||
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.18);
|
||
|
|
background:
|
||
|
|
radial-gradient(circle at top left, rgba(var(--theme-primary-rgb, 58, 124, 165), 0.12), transparent 34%),
|
||
|
|
radial-gradient(circle at right 20%, rgba(59, 130, 246, 0.07), transparent 28%),
|
||
|
|
linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #f5fbff 100%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-hero::before,
|
||
|
|
.assistant-hero::after {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
border-radius: 999px;
|
||
|
|
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.06);
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-hero::before {
|
||
|
|
right: -48px;
|
||
|
|
bottom: -58px;
|
||
|
|
width: 220px;
|
||
|
|
height: 220px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-hero::after {
|
||
|
|
right: 92px;
|
||
|
|
top: -44px;
|
||
|
|
width: 140px;
|
||
|
|
height: 140px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-visual {
|
||
|
|
position: relative;
|
||
|
|
min-height: 196px;
|
||
|
|
display: flex;
|
||
|
|
align-items: flex-end;
|
||
|
|
justify-content: flex-start;
|
||
|
|
padding: 0 0 10px 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-visual::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
inset: auto auto -78px -58px;
|
||
|
|
width: 264px;
|
||
|
|
height: 228px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: radial-gradient(circle at 48% 38%, rgba(255, 255, 255, 0.92) 0%, rgba(224, 242, 254, 0.84) 58%, rgba(224, 242, 254, 0) 100%);
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-visual::after {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
left: 52px;
|
||
|
|
bottom: 18px;
|
||
|
|
width: 132px;
|
||
|
|
height: 18px;
|
||
|
|
border-radius: 999px;
|
||
|
|
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.14);
|
||
|
|
filter: blur(12px);
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-glow {
|
||
|
|
position: absolute;
|
||
|
|
left: 24px;
|
||
|
|
bottom: 22px;
|
||
|
|
width: 176px;
|
||
|
|
height: 176px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(224, 242, 254, 0.9) 58%, rgba(224, 242, 254, 0) 100%);
|
||
|
|
box-shadow: 0 24px 48px rgba(var(--theme-primary-rgb, 58, 124, 165), 0.12);
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-image {
|
||
|
|
position: relative;
|
||
|
|
z-index: 1;
|
||
|
|
width: 184px;
|
||
|
|
max-width: 100%;
|
||
|
|
height: auto;
|
||
|
|
object-fit: contain;
|
||
|
|
object-position: left bottom;
|
||
|
|
filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.16));
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-copy {
|
||
|
|
position: relative;
|
||
|
|
z-index: 1;
|
||
|
|
display: grid;
|
||
|
|
gap: 10px;
|
||
|
|
align-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-copy h3 {
|
||
|
|
color: #0f172a;
|
||
|
|
font-size: 26px;
|
||
|
|
line-height: 1.25;
|
||
|
|
font-weight: 800;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-copy p {
|
||
|
|
max-width: 760px;
|
||
|
|
color: #5b6b83;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 1.6;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-input {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 48px;
|
||
|
|
padding: 4px 14px;
|
||
|
|
border: 1px solid rgba(148, 163, 184, 0.28);
|
||
|
|
border-radius: 4px;
|
||
|
|
background: rgba(255, 255, 255, 0.92);
|
||
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-file-input {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-input textarea {
|
||
|
|
min-width: 0;
|
||
|
|
flex: 1;
|
||
|
|
height: 22px;
|
||
|
|
min-height: 22px;
|
||
|
|
max-height: 22px;
|
||
|
|
resize: none;
|
||
|
|
border: 0;
|
||
|
|
padding: 1px 0;
|
||
|
|
background: transparent;
|
||
|
|
color: #0f172a;
|
||
|
|
font-size: 15px;
|
||
|
|
line-height: 22px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-input textarea::placeholder {
|
||
|
|
color: #94a3b8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-input textarea:focus {
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-action,
|
||
|
|
.secondary-action,
|
||
|
|
.ghost-action,
|
||
|
|
.row-action,
|
||
|
|
.link-action,
|
||
|
|
.row-link {
|
||
|
|
border: 0;
|
||
|
|
background: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-action {
|
||
|
|
height: 40px;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 8px;
|
||
|
|
padding: 0 16px;
|
||
|
|
border-radius: 4px;
|
||
|
|
background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-active));
|
||
|
|
color: #fff;
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 800;
|
||
|
|
white-space: nowrap;
|
||
|
|
box-shadow: 0 10px 22px rgba(var(--theme-primary-rgb, 58, 124, 165), 0.18);
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-action .mdi,
|
||
|
|
.secondary-action .mdi,
|
||
|
|
.ghost-action .mdi {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-action span,
|
||
|
|
.secondary-action span,
|
||
|
|
.ghost-action span {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
line-height: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-tools {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 10px;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-file-strip {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-file-note,
|
||
|
|
.assistant-file-chip {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 30px;
|
||
|
|
padding: 0 12px;
|
||
|
|
border-radius: 999px;
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-file-note {
|
||
|
|
background: var(--theme-primary-soft);
|
||
|
|
color: var(--theme-primary-active);
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-file-chip {
|
||
|
|
max-width: 220px;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
border: 1px solid rgba(148, 163, 184, 0.24);
|
||
|
|
background: rgba(255, 255, 255, 0.9);
|
||
|
|
color: #475569;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-file-clear {
|
||
|
|
border: 0;
|
||
|
|
background: transparent;
|
||
|
|
color: #64748b;
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: 700;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ghost-action {
|
||
|
|
height: 40px;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 8px;
|
||
|
|
padding: 0 16px;
|
||
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.22);
|
||
|
|
border-radius: 4px;
|
||
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
|
||
|
|
color: var(--theme-primary-active);
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 700;
|
||
|
|
box-shadow:
|
||
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.9),
|
||
|
|
0 6px 14px rgba(var(--theme-primary-rgb, 58, 124, 165), 0.08);
|
||
|
|
}
|
||
|
|
|
||
|
|
.ghost-action .mdi {
|
||
|
|
color: var(--theme-primary);
|
||
|
|
}
|
||
|
|
|
||
|
|
.secondary-action {
|
||
|
|
height: 40px;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 8px;
|
||
|
|
padding: 0 16px;
|
||
|
|
border: 1px solid rgba(59, 130, 246, 0.18);
|
||
|
|
border-radius: 4px;
|
||
|
|
background: linear-gradient(180deg, rgba(244, 249, 255, 0.96), rgba(234, 244, 255, 0.9));
|
||
|
|
color: #1d4ed8;
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 700;
|
||
|
|
white-space: nowrap;
|
||
|
|
box-shadow:
|
||
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.92),
|
||
|
|
0 6px 14px rgba(37, 99, 235, 0.08);
|
||
|
|
}
|
||
|
|
|
||
|
|
.secondary-action .mdi {
|
||
|
|
color: #2563eb;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-action:disabled,
|
||
|
|
.secondary-action:disabled,
|
||
|
|
.ghost-action:disabled {
|
||
|
|
cursor: not-allowed;
|
||
|
|
opacity: 0.68;
|
||
|
|
box-shadow: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.workbench-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||
|
|
gap: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-panel,
|
||
|
|
.policy-panel {
|
||
|
|
padding: 20px 22px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-head {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
gap: 12px;
|
||
|
|
margin-bottom: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-head h3 {
|
||
|
|
color: #0f172a;
|
||
|
|
font-size: 17px;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title-with-badge {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
min-width: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.alert-badge {
|
||
|
|
min-width: 22px;
|
||
|
|
height: 22px;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 0 7px;
|
||
|
|
border-radius: 999px;
|
||
|
|
background: #ef4444;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: 800;
|
||
|
|
line-height: 1;
|
||
|
|
box-shadow: 0 6px 14px rgba(239, 68, 68, 0.22);
|
||
|
|
}
|
||
|
|
|
||
|
|
.link-action {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 4px;
|
||
|
|
color: var(--theme-primary-active);
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-body {
|
||
|
|
display: grid;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-row,
|
||
|
|
.progress-row {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 56px minmax(0, 1fr) auto;
|
||
|
|
gap: 14px;
|
||
|
|
align-items: center;
|
||
|
|
padding: 14px 0;
|
||
|
|
border-top: 1px solid #edf2f7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-row:first-child,
|
||
|
|
.progress-row:first-child {
|
||
|
|
padding-top: 4px;
|
||
|
|
border-top: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-copy {
|
||
|
|
min-width: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-copy strong {
|
||
|
|
display: block;
|
||
|
|
color: #0f172a;
|
||
|
|
font-size: 15px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 1.4;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-copy p {
|
||
|
|
margin-top: 4px;
|
||
|
|
color: #6b7280;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 1.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-advice {
|
||
|
|
display: flex;
|
||
|
|
align-items: flex-start;
|
||
|
|
gap: 8px;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-advice-label {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 22px;
|
||
|
|
padding: 0 8px;
|
||
|
|
border-radius: 999px;
|
||
|
|
background: var(--theme-primary-soft);
|
||
|
|
color: var(--theme-primary-active);
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: 800;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-advice-text {
|
||
|
|
color: #64748b;
|
||
|
|
}
|
||
|
|
|
||
|
|
.row-action {
|
||
|
|
height: 38px;
|
||
|
|
padding: 0 16px;
|
||
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.36);
|
||
|
|
border-radius: 4px;
|
||
|
|
color: var(--theme-primary-active);
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 700;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-row {
|
||
|
|
grid-template-columns: 56px minmax(0, 1fr) minmax(84px, auto) minmax(104px, auto);
|
||
|
|
gap: 14px 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-copy strong {
|
||
|
|
margin-bottom: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-amount {
|
||
|
|
color: #0f172a;
|
||
|
|
font-size: 20px;
|
||
|
|
font-weight: 800;
|
||
|
|
line-height: 1;
|
||
|
|
text-align: right;
|
||
|
|
font-variant-numeric: tabular-nums;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-status {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
min-width: 104px;
|
||
|
|
min-height: 34px;
|
||
|
|
padding: 6px 14px;
|
||
|
|
border-radius: 999px;
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: 800;
|
||
|
|
white-space: nowrap;
|
||
|
|
justify-self: end;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-status.success,
|
||
|
|
.policy-status.success {
|
||
|
|
background: var(--success-soft);
|
||
|
|
color: var(--success);
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-status.info,
|
||
|
|
.policy-status.info {
|
||
|
|
background: #eff6ff;
|
||
|
|
color: #3b82f6;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-status.mint {
|
||
|
|
background: var(--success-soft);
|
||
|
|
color: var(--success);
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-table {
|
||
|
|
border: 1px solid #e7edf5;
|
||
|
|
border-radius: 4px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-row {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 2.2fr 2.4fr 1fr;
|
||
|
|
gap: 16px;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 56px;
|
||
|
|
padding: 0 18px;
|
||
|
|
border-top: 1px solid #edf2f7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-head {
|
||
|
|
min-height: 44px;
|
||
|
|
background: #f8fbff;
|
||
|
|
color: #64748b;
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: 800;
|
||
|
|
border-top: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-row strong,
|
||
|
|
.policy-row span {
|
||
|
|
min-width: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-row strong {
|
||
|
|
color: #0f172a;
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-row span {
|
||
|
|
color: #64748b;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-title-cell,
|
||
|
|
.policy-summary-cell {
|
||
|
|
justify-self: stretch;
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-date-cell {
|
||
|
|
justify-self: center;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 1320px) {
|
||
|
|
.assistant-copy h3 {
|
||
|
|
font-size: 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-row {
|
||
|
|
grid-template-columns: 1.8fr 1.8fr 1fr;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 1440px) {
|
||
|
|
.workbench {
|
||
|
|
gap: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-hero {
|
||
|
|
gap: 16px;
|
||
|
|
padding: 18px 20px 18px 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-copy h3 {
|
||
|
|
font-size: 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-visual {
|
||
|
|
min-height: 184px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-image {
|
||
|
|
width: 172px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.workbench-grid {
|
||
|
|
gap: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-panel,
|
||
|
|
.policy-panel {
|
||
|
|
padding: 18px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-row {
|
||
|
|
min-height: 52px;
|
||
|
|
padding: 0 16px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 1080px) {
|
||
|
|
.assistant-hero {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
gap: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-visual {
|
||
|
|
min-height: 188px;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 0 0 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-visual::before,
|
||
|
|
.assistant-visual::after,
|
||
|
|
.assistant-glow {
|
||
|
|
left: 50%;
|
||
|
|
transform: translateX(-50%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-visual::before {
|
||
|
|
inset: auto auto -82px 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-image {
|
||
|
|
width: 176px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.workbench-grid {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 860px) {
|
||
|
|
.assistant-hero,
|
||
|
|
.list-panel,
|
||
|
|
.policy-panel {
|
||
|
|
padding: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-input {
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: stretch;
|
||
|
|
padding: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-visual {
|
||
|
|
min-height: 160px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-glow {
|
||
|
|
width: 148px;
|
||
|
|
height: 148px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-image {
|
||
|
|
width: 150px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-input textarea {
|
||
|
|
height: 40px;
|
||
|
|
min-height: 40px;
|
||
|
|
max-height: 40px;
|
||
|
|
line-height: 1.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-action,
|
||
|
|
.secondary-action,
|
||
|
|
.ghost-action,
|
||
|
|
.row-action {
|
||
|
|
width: 100%;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.assistant-file-chip {
|
||
|
|
max-width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.todo-row,
|
||
|
|
.progress-row {
|
||
|
|
grid-template-columns: 56px minmax(0, 1fr);
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-amount {
|
||
|
|
grid-column: 2;
|
||
|
|
text-align: left;
|
||
|
|
font-size: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.row-action,
|
||
|
|
.progress-status {
|
||
|
|
grid-column: 2;
|
||
|
|
justify-self: start;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-table {
|
||
|
|
border: 0;
|
||
|
|
border-radius: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-head {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-row {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
gap: 8px;
|
||
|
|
padding: 16px 0;
|
||
|
|
border-top: 1px solid #edf2f7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.policy-row strong,
|
||
|
|
.policy-row span {
|
||
|
|
white-space: normal;
|
||
|
|
}
|
||
|
|
}
|