Release v0.1.3
This commit is contained in:
@@ -1615,6 +1615,11 @@
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.managed-pattern-rendered {
|
||||
display: block;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
/* Review & Send workflow page. */
|
||||
.review-send-page {
|
||||
--review-flow-purple: #9b86c7;
|
||||
@@ -2139,6 +2144,14 @@
|
||||
background: var(--panel);
|
||||
}
|
||||
|
||||
.template-replacement-field {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
margin-top: 12px;
|
||||
color: var(--text-strong);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.template-expression-description {
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -2537,6 +2550,234 @@
|
||||
min-width: 0;
|
||||
box-shadow: var(--shadow-card, 0 2px 10px rgba(0,0,0,.06));
|
||||
}
|
||||
.recipient-import-modal {
|
||||
width: min(1100px, calc(100vw - 32px));
|
||||
}
|
||||
.recipient-import-body {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
}
|
||||
.recipient-import-steps {
|
||||
padding: 13px 10px 9px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: var(--radius);
|
||||
background: rgba(247, 246, 244, .96);
|
||||
box-shadow: 0 8px 24px rgba(48, 49, 53, .10);
|
||||
overflow-x: auto;
|
||||
}
|
||||
.recipient-import-step-track {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
width: max-content;
|
||||
min-width: max-content;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.recipient-import-step-group {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.recipient-import-step-item {
|
||||
display: grid;
|
||||
justify-items: center;
|
||||
gap: 6px;
|
||||
min-width: 104px;
|
||||
padding: 3px 6px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: var(--text);
|
||||
font: inherit;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.recipient-import-step-item:disabled {
|
||||
cursor: default;
|
||||
opacity: .56;
|
||||
}
|
||||
.recipient-import-step-item:not(:disabled):hover .recipient-import-step-icon,
|
||||
.recipient-import-step-item:focus-visible .recipient-import-step-icon {
|
||||
background: color-mix(in srgb, var(--accent, #5d776c) 14%, #fff);
|
||||
box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent, #5d776c) 12%, transparent);
|
||||
}
|
||||
.recipient-import-step-item:focus-visible {
|
||||
outline: none;
|
||||
}
|
||||
.recipient-import-step-icon {
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
border: 1px solid color-mix(in srgb, var(--accent, #5d776c) 70%, var(--line));
|
||||
border-radius: 50%;
|
||||
color: color-mix(in srgb, var(--accent, #5d776c) 82%, var(--text));
|
||||
background: color-mix(in srgb, var(--accent, #5d776c) 8%, #fff);
|
||||
font-weight: 700;
|
||||
transition: background .16s ease, box-shadow .16s ease, color .16s ease;
|
||||
}
|
||||
.recipient-import-step-item.is-current .recipient-import-step-icon,
|
||||
.recipient-import-step-item.is-complete .recipient-import-step-icon {
|
||||
color: #fff;
|
||||
background: color-mix(in srgb, var(--accent, #5d776c) 86%, #333);
|
||||
}
|
||||
.recipient-import-step-copy {
|
||||
display: grid;
|
||||
justify-items: center;
|
||||
min-width: 0;
|
||||
}
|
||||
.recipient-import-step-copy strong {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--text-strong);
|
||||
font-size: 12px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.recipient-import-step-copy small {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 14px;
|
||||
max-width: 120px;
|
||||
color: var(--muted);
|
||||
font-size: 11px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.recipient-import-step-line {
|
||||
width: 42px;
|
||||
height: 2px;
|
||||
margin: 21px 2px 0;
|
||||
flex: 0 0 auto;
|
||||
background: color-mix(in srgb, var(--accent, #5d776c) 55%, var(--line));
|
||||
opacity: .82;
|
||||
}
|
||||
.recipient-import-step-panel {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
min-height: 360px;
|
||||
}
|
||||
.recipient-import-upload-grid,
|
||||
.recipient-import-map-controls {
|
||||
align-items: start;
|
||||
}
|
||||
.recipient-import-textarea {
|
||||
min-height: 190px;
|
||||
max-height: 300px;
|
||||
resize: vertical;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
.recipient-import-toggles {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 10px 18px;
|
||||
min-height: 38px;
|
||||
}
|
||||
.recipient-import-summary {
|
||||
grid-template-columns: repeat(4, minmax(120px, 1fr));
|
||||
}
|
||||
.recipient-import-preview-surface {
|
||||
overflow: auto;
|
||||
}
|
||||
.recipient-import-preview-table {
|
||||
width: 100%;
|
||||
min-width: 760px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.recipient-import-preview-table th,
|
||||
.recipient-import-preview-table td {
|
||||
border-bottom: 1px solid var(--line);
|
||||
padding: 9px 10px;
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
}
|
||||
.recipient-import-preview-table th {
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.recipient-import-preview-table td {
|
||||
color: var(--text);
|
||||
font-size: 13px;
|
||||
word-break: break-word;
|
||||
}
|
||||
.recipient-import-preview-table tr.is-invalid td {
|
||||
color: var(--danger-text);
|
||||
}
|
||||
.recipient-import-raw-table td {
|
||||
white-space: pre;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
font-size: 12px;
|
||||
}
|
||||
.recipient-import-raw-table tr.is-header-row td {
|
||||
background: color-mix(in srgb, var(--accent, #5d776c) 8%, transparent);
|
||||
font-weight: 700;
|
||||
}
|
||||
.recipient-import-mapping-table select,
|
||||
.recipient-import-mapping-table input {
|
||||
width: 100%;
|
||||
min-width: 160px;
|
||||
}
|
||||
.recipient-import-mapping-table td:nth-child(2) {
|
||||
max-width: 260px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.recipient-import-file-step {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
}
|
||||
.recipient-import-file-actions {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
padding: 12px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: var(--radius-sm);
|
||||
background: var(--panel-soft);
|
||||
}
|
||||
.recipient-import-file-actions > div:first-child {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
min-width: 0;
|
||||
}
|
||||
.recipient-import-unmatched-patterns {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
padding: 10px 12px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: var(--radius-sm);
|
||||
background: color-mix(in srgb, var(--warning-bg, #fff3cd) 62%, transparent);
|
||||
}
|
||||
.recipient-import-unmatched-patterns ul {
|
||||
display: grid;
|
||||
gap: 5px;
|
||||
margin: 0;
|
||||
padding-left: 18px;
|
||||
}
|
||||
.recipient-import-unmatched-patterns code {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
.recipient-import-file-link-table td:nth-child(2) {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
@media (max-width: 760px) {
|
||||
.recipient-import-file-actions {
|
||||
display: grid;
|
||||
}
|
||||
}
|
||||
@media (max-width: 760px) {
|
||||
.recipient-import-summary {
|
||||
grid-template-columns: repeat(2, minmax(120px, 1fr));
|
||||
}
|
||||
.recipient-import-step-panel {
|
||||
min-height: 300px;
|
||||
}
|
||||
}
|
||||
.card-body > .admin-table-surface:only-child {
|
||||
margin: -22px -24px;
|
||||
width: calc(100% + 48px);
|
||||
|
||||
Reference in New Issue
Block a user