mirror of
https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw.git
synced 2026-07-30 19:49:07 +00:00
Motivation: The previous data structure for workflows and schemas lacked cohesion and was difficult to maintain manually. Additionally, a more robust and flexible migration system was needed to transfer skill configurations across different environments. Implementation: 1. Unified the data hierarchy into a directory-based structure: 'data/<server>/<workflow>/'. 2. Enhanced 'transfer_manager.py' and 'transfer_bundle.py' for environmental-aware configuration migration. 3. Updated frontend JS/CSS and Flask routes to support the new directory-centric asset management. 4. Revamped English and Chinese READMEs to prioritize safe installation and clear configuration workflows.
2331 lines
44 KiB
CSS
2331 lines
44 KiB
CSS
:root {
|
|
--bg: #090b0f;
|
|
--surface: rgba(17, 19, 24, 0.78);
|
|
--surface-strong: #111318;
|
|
--surface-soft: #0d1016;
|
|
--card-border: #1f2937;
|
|
--card-border-strong: #374151;
|
|
--text-main: #f3f4f6;
|
|
--text-muted: #9ca3af;
|
|
--primary: #e11d48;
|
|
--primary-hover: #be123c;
|
|
--primary-soft: rgba(225, 29, 72, 0.14);
|
|
--danger: #f43f5e;
|
|
--danger-hover: #e11d48;
|
|
--success: #10b981;
|
|
--warning: #fbbf24;
|
|
--hover-color: rgba(255, 255, 255, 0.03);
|
|
--shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.25);
|
|
--radius-lg: 1rem;
|
|
--radius-md: 0.75rem;
|
|
--radius-sm: 0.5rem;
|
|
--focus-ring: 0 0 0 3px rgba(225, 29, 72, 0.35);
|
|
--space-1: 8px;
|
|
--space-2: 12px;
|
|
--space-3: 16px;
|
|
--space-4: 20px;
|
|
--space-5: 24px;
|
|
--space-6: 32px;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
position: relative;
|
|
background: var(--bg);
|
|
color: var(--text-main);
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
#pixel-blast-bg {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
opacity: 0.92;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
button,
|
|
label[for],
|
|
.upload-zone {
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
input[type="text"],
|
|
select {
|
|
width: 100%;
|
|
min-height: 46px;
|
|
padding: 10px 14px;
|
|
border: 1px solid var(--card-border);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--surface-soft);
|
|
color: var(--text-main);
|
|
transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
|
|
}
|
|
|
|
input[type="text"]:focus,
|
|
select:focus,
|
|
button:focus-visible,
|
|
.upload-zone:focus-visible,
|
|
.toggle-switch input:focus-visible+.slider {
|
|
outline: none;
|
|
border-color: var(--primary);
|
|
box-shadow: var(--focus-ring);
|
|
}
|
|
|
|
.custom-select-native {
|
|
display: none !important;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.subtitle,
|
|
.section-meta,
|
|
.upload-subtitle,
|
|
.param-meta,
|
|
.workflow-desc,
|
|
.workflow-status {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.shell {
|
|
width: min(100%, 1080px);
|
|
margin: 0 auto;
|
|
padding: calc(var(--space-6) + var(--space-5)) var(--space-4) 56px;
|
|
}
|
|
|
|
.page {
|
|
position: relative;
|
|
z-index: 1;
|
|
animation: fadeIn 0.3s ease-out;
|
|
}
|
|
|
|
.page-header {
|
|
display: flex;
|
|
gap: 16px;
|
|
align-items: center;
|
|
margin-bottom: calc(var(--space-6) + var(--space-1));
|
|
}
|
|
|
|
.page-header-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--space-2);
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.page-header.custom-select-host-open,
|
|
.card.custom-select-host-open,
|
|
.server-config-container.custom-select-host-open {
|
|
position: relative;
|
|
z-index: 40;
|
|
}
|
|
|
|
/* View 2 Navigation */
|
|
.editor-nav {
|
|
display: flex;
|
|
gap: 20px;
|
|
align-items: center;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.editor-nav-title {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 6px;
|
|
}
|
|
|
|
.editor-back-btn {
|
|
font-size: 0.95rem;
|
|
padding: 8px 16px;
|
|
min-height: 38px;
|
|
}
|
|
|
|
.editor-progress-hint {
|
|
font-size: 0.88rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.editor-stepper {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 12px;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 20px;
|
|
}
|
|
|
|
.editor-step {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-height: 40px;
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--card-border);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text-muted);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.editor-step.is-active {
|
|
border-color: var(--primary);
|
|
color: #ffe4e6;
|
|
background: rgba(225, 29, 72, 0.12);
|
|
}
|
|
|
|
.editor-step.is-done {
|
|
border-color: rgba(16, 185, 129, 0.45);
|
|
color: #6ee7b7;
|
|
}
|
|
|
|
.editor-step-index {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 999px;
|
|
border: 1px solid currentColor;
|
|
font-size: 0.78rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.editor-step-label {
|
|
font-size: 0.84rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.page-title-group {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.logo-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 52px;
|
|
min-height: 52px;
|
|
padding: 12px;
|
|
border-radius: 14px;
|
|
background: var(--primary-soft);
|
|
color: var(--primary);
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.logo-frame {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
padding: 3px;
|
|
border-radius: 18px;
|
|
background:
|
|
linear-gradient(135deg,
|
|
rgba(104, 18, 35, 0.78),
|
|
rgba(157, 57, 77, 0.46) 45%,
|
|
rgba(255, 255, 255, 0.14) 100%);
|
|
box-shadow: none;
|
|
overflow: hidden;
|
|
clip-path: path("M 17 0 C 8 0 0 8 0 17 L 0 45 C 0 54 8 62 17 62 L 45 62 C 54 62 62 54 62 45 L 62 17 C 62 8 54 0 45 0 Z");
|
|
}
|
|
|
|
.logo-image {
|
|
width: 56px;
|
|
height: 56px;
|
|
display: block;
|
|
border-radius: 16px;
|
|
object-fit: cover;
|
|
border: 0;
|
|
box-shadow: none;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
clip-path: path("M 15 0 C 7 0 0 7 0 15 L 0 41 C 0 49 7 56 15 56 L 41 56 C 49 56 56 49 56 41 L 56 15 C 56 7 49 0 41 0 Z");
|
|
}
|
|
|
|
h1 {
|
|
font-size: clamp(1.8rem, 3vw, 2.1rem);
|
|
font-weight: 700;
|
|
}
|
|
|
|
#current-server-config-panel.hidden,
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.server-config-form {
|
|
padding: 16px;
|
|
background-color: var(--hover-color);
|
|
border-radius: 8px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card {
|
|
margin-bottom: var(--space-5);
|
|
padding: var(--space-5);
|
|
border: 1px solid var(--card-border);
|
|
border-radius: var(--radius-lg);
|
|
background: var(--surface);
|
|
backdrop-filter: blur(12px);
|
|
box-shadow: var(--shadow-lg);
|
|
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
border-color: rgba(148, 163, 184, 0.32);
|
|
}
|
|
|
|
.card-nested {
|
|
background: var(--surface-soft);
|
|
border-color: var(--card-border);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.card-title,
|
|
.section-title {
|
|
font-size: 1.15rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.section-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--space-2);
|
|
margin-bottom: var(--space-3);
|
|
}
|
|
|
|
.panel-toolbar {
|
|
min-height: 48px;
|
|
margin-bottom: var(--space-3);
|
|
}
|
|
|
|
.panel-title-wrap {
|
|
min-width: 0;
|
|
}
|
|
|
|
.panel-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: var(--space-2);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.panel-meta {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 36px;
|
|
margin: 0;
|
|
padding: 0 12px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(148, 163, 184, 0.3);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
font-size: 0.82rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.panel-action-btn {
|
|
min-height: 40px;
|
|
padding: 8px 14px;
|
|
}
|
|
|
|
.server-selector-wrapper {
|
|
width: clamp(180px, 24vw, 260px);
|
|
min-width: 180px;
|
|
position: relative;
|
|
}
|
|
|
|
.server-selector {
|
|
width: 100%;
|
|
padding: 8px 36px 8px 14px;
|
|
background: var(--surface-soft);
|
|
border: 1px solid var(--card-border);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text-main);
|
|
font-weight: 600;
|
|
appearance: none;
|
|
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
|
|
background-repeat: no-repeat;
|
|
background-position: right 12px center;
|
|
background-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.custom-select {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.custom-select.is-lang-select {
|
|
width: 136px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.custom-select.is-lang-select .custom-select-trigger {
|
|
min-height: 42px;
|
|
padding: 8px 36px 8px 12px;
|
|
font-size: 0.92rem;
|
|
}
|
|
|
|
.custom-select.is-server-select .custom-select-trigger {
|
|
min-height: 40px;
|
|
padding: 8px 36px 8px 12px;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.custom-select.is-server-select .custom-select-chevron {
|
|
right: 12px;
|
|
}
|
|
|
|
.custom-select-trigger {
|
|
width: 100%;
|
|
min-height: 46px;
|
|
padding: 10px 42px 10px 14px;
|
|
border: 1px solid var(--card-border);
|
|
border-radius: var(--radius-sm);
|
|
background:
|
|
linear-gradient(180deg, rgba(20, 24, 32, 0.94) 0%, rgba(11, 15, 21, 0.98) 100%);
|
|
color: var(--text-main);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
|
|
}
|
|
|
|
.custom-select-trigger:hover,
|
|
.custom-select.is-open .custom-select-trigger {
|
|
border-color: rgba(225, 29, 72, 0.55);
|
|
background:
|
|
linear-gradient(180deg, rgba(29, 34, 45, 0.96) 0%, rgba(15, 19, 27, 0.98) 100%);
|
|
}
|
|
|
|
.custom-select-trigger:focus-visible {
|
|
outline: none;
|
|
border-color: var(--primary);
|
|
box-shadow: var(--focus-ring);
|
|
}
|
|
|
|
.custom-select-value {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.custom-select-chevron {
|
|
position: absolute;
|
|
right: 14px;
|
|
top: 50%;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-right: 2px solid rgba(226, 232, 240, 0.72);
|
|
border-bottom: 2px solid rgba(226, 232, 240, 0.72);
|
|
transform: translateY(-65%) rotate(45deg);
|
|
transition: transform 0.18s ease, border-color 0.18s ease;
|
|
}
|
|
|
|
.custom-select.is-open .custom-select-chevron {
|
|
transform: translateY(-30%) rotate(-135deg);
|
|
border-color: #fff1f2;
|
|
}
|
|
|
|
.custom-select-menu {
|
|
position: absolute;
|
|
top: calc(100% + 8px);
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1600;
|
|
display: none;
|
|
padding: 8px;
|
|
border: 1px solid rgba(225, 29, 72, 0.32);
|
|
border-radius: 14px;
|
|
background:
|
|
linear-gradient(180deg, rgba(16, 20, 27, 0.98) 0%, rgba(10, 14, 20, 0.99) 100%);
|
|
box-shadow:
|
|
0 24px 52px rgba(0, 0, 0, 0.42),
|
|
0 0 0 1px rgba(225, 29, 72, 0.08);
|
|
backdrop-filter: blur(14px);
|
|
max-height: min(320px, 48vh);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.custom-select.is-open .custom-select-menu,
|
|
.custom-select-menu.is-open {
|
|
display: block;
|
|
animation: customSelectFadeIn 0.16s ease-out;
|
|
}
|
|
|
|
.custom-select-option {
|
|
width: 100%;
|
|
padding: 11px 12px;
|
|
border: 0;
|
|
border-radius: 10px;
|
|
background: transparent;
|
|
color: var(--text-main);
|
|
text-align: left;
|
|
cursor: pointer;
|
|
transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.custom-select-option:hover,
|
|
.custom-select-option:focus-visible {
|
|
outline: none;
|
|
background: rgba(225, 29, 72, 0.12);
|
|
color: #fff1f2;
|
|
}
|
|
|
|
.custom-select-option.is-selected {
|
|
background:
|
|
linear-gradient(180deg, rgba(225, 29, 72, 0.18) 0%, rgba(190, 24, 93, 0.14) 100%);
|
|
color: #ffe4e6;
|
|
box-shadow: inset 0 0 0 1px rgba(251, 113, 133, 0.2);
|
|
}
|
|
|
|
.custom-select.is-disabled .custom-select-trigger,
|
|
.custom-select-trigger:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.58;
|
|
}
|
|
|
|
@keyframes customSelectFadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-4px) scale(0.985);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
.server-config-container {
|
|
margin-top: var(--space-5);
|
|
padding: var(--space-4) var(--space-3);
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.server-main-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
.server-main-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-2);
|
|
min-width: 0;
|
|
}
|
|
|
|
.server-main-left .section-meta {
|
|
flex-shrink: 0;
|
|
font-weight: 600;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.server-empty-state {
|
|
margin-top: var(--space-4);
|
|
padding: 22px;
|
|
border: 1px dashed rgba(156, 163, 175, 0.35);
|
|
border-radius: var(--radius-md);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
}
|
|
|
|
.server-config-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 24px;
|
|
padding-bottom: 16px;
|
|
border-bottom: 1px solid var(--card-border);
|
|
/* Assuming --border-color should be --card-border */
|
|
}
|
|
|
|
.server-primary-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.server-header-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.server-status-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 8px 8px 8px 10px;
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(148, 163, 184, 0.2);
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
|
|
font-size: 14px;
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.server-status-toggle #server-enabled-label {
|
|
min-width: 72px;
|
|
height: 28px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid transparent;
|
|
text-align: center;
|
|
font-size: 0.82rem;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
|
|
}
|
|
|
|
.server-status-toggle #server-enabled-label.status-on {
|
|
background: rgba(16, 185, 129, 0.14);
|
|
border-color: rgba(16, 185, 129, 0.32);
|
|
color: #6ee7b7;
|
|
}
|
|
|
|
.server-status-toggle #server-enabled-label.status-off {
|
|
background: rgba(100, 116, 139, 0.18);
|
|
border-color: rgba(100, 116, 139, 0.34);
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
.server-status-toggle .toggle-inline {
|
|
gap: 8px;
|
|
margin: 0;
|
|
}
|
|
|
|
.server-action-btn,
|
|
.workflow-action-btn {
|
|
width: 18px;
|
|
min-width: 18px;
|
|
height: 18px;
|
|
min-height: 18px;
|
|
padding: 0;
|
|
border-radius: 6px;
|
|
border: 1px solid rgba(148, 163, 184, 0.44);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: #e5e7eb;
|
|
transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
|
|
}
|
|
|
|
.server-action-btn:hover,
|
|
.server-action-btn:focus-visible,
|
|
.workflow-action-btn:hover,
|
|
.workflow-action-btn:focus-visible {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-color: rgba(203, 213, 225, 0.58);
|
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.server-action-btn svg,
|
|
.workflow-action-btn svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.workflow-action-btn {
|
|
border-color: rgba(148, 163, 184, 0.14);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.workflow-action-btn:hover,
|
|
.workflow-action-btn:focus-visible {
|
|
border-color: rgba(203, 213, 225, 0.58);
|
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.server-delete-btn,
|
|
.workflow-delete-btn {
|
|
border-color: rgba(239, 68, 68, 0.42);
|
|
color: #fda4af;
|
|
}
|
|
|
|
.workflow-delete-btn {
|
|
border-color: rgba(148, 163, 184, 0.14);
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.server-delete-btn:hover,
|
|
.server-delete-btn:focus-visible,
|
|
.workflow-delete-btn:hover,
|
|
.workflow-delete-btn:focus-visible {
|
|
background: rgba(239, 68, 68, 0.12);
|
|
border-color: rgba(251, 113, 133, 0.6);
|
|
box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.14);
|
|
color: #fecdd3;
|
|
}
|
|
|
|
.workflow-delete-btn:hover,
|
|
.workflow-delete-btn:focus-visible {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-color: rgba(203, 213, 225, 0.58);
|
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
|
|
color: var(--text-main);
|
|
}
|
|
|
|
body.modal-open {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.modal-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(2, 6, 23, 0.62);
|
|
backdrop-filter: blur(3px);
|
|
display: grid;
|
|
place-items: center;
|
|
z-index: 1000;
|
|
padding: 20px;
|
|
}
|
|
|
|
.modal-card {
|
|
width: min(100%, 560px);
|
|
border-radius: var(--radius-lg);
|
|
border: 1px solid rgba(225, 29, 72, 0.35);
|
|
background: linear-gradient(180deg, rgba(17, 19, 24, 0.98) 0%, rgba(12, 15, 22, 0.98) 100%);
|
|
box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.modal-header {
|
|
padding: 18px 20px 12px;
|
|
border-bottom: 1px solid var(--card-border);
|
|
}
|
|
|
|
.modal-body {
|
|
padding: var(--space-3) var(--space-4) var(--space-1);
|
|
}
|
|
|
|
.modal-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0 12px;
|
|
}
|
|
|
|
.form-group-half {
|
|
grid-column: span 1;
|
|
}
|
|
|
|
.form-group-full {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.modal-actions {
|
|
padding: 14px var(--space-4) 18px;
|
|
border-top: 1px solid var(--card-border);
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: var(--space-1);
|
|
}
|
|
|
|
.confirm-modal-card {
|
|
width: min(100%, 460px);
|
|
}
|
|
|
|
.confirm-modal-message {
|
|
margin: 0;
|
|
color: var(--text-main);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.confirm-modal-checkbox {
|
|
margin-top: 14px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.transfer-modal-card {
|
|
width: min(100%, 720px);
|
|
}
|
|
|
|
.transfer-modal-body {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.transfer-panel {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.transfer-option-group,
|
|
.transfer-sections,
|
|
.transfer-warning-list,
|
|
.transfer-export-tree {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.transfer-export-server {
|
|
border: 1px solid rgba(148, 163, 184, 0.24);
|
|
border-radius: 16px;
|
|
background:
|
|
radial-gradient(circle at top left, rgba(225, 29, 72, 0.08), transparent 42%),
|
|
linear-gradient(180deg, rgba(20, 24, 32, 0.76) 0%, rgba(10, 14, 20, 0.94) 100%);
|
|
overflow: hidden;
|
|
box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
|
|
transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
|
|
}
|
|
|
|
.transfer-export-server:hover {
|
|
border-color: rgba(225, 29, 72, 0.34);
|
|
box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.transfer-export-server.is-open {
|
|
border-color: rgba(225, 29, 72, 0.46);
|
|
box-shadow:
|
|
inset 0 0 0 1px rgba(225, 29, 72, 0.08),
|
|
0 20px 40px rgba(0, 0, 0, 0.24);
|
|
}
|
|
|
|
.transfer-export-server-head {
|
|
display: flex;
|
|
align-items: stretch;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
padding: 14px 16px;
|
|
}
|
|
|
|
.transfer-export-server-summary {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.transfer-export-server-copy {
|
|
display: grid;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.transfer-export-server-title-row,
|
|
.transfer-export-workflow-title-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.transfer-export-server-pills {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.transfer-export-server-meta {
|
|
color: var(--text-muted);
|
|
font-size: 0.88rem;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.transfer-export-toggle {
|
|
width: 42px;
|
|
min-width: 42px;
|
|
border: 1px solid rgba(148, 163, 184, 0.18);
|
|
border-radius: 12px;
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
|
|
color: var(--text-main);
|
|
cursor: pointer;
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
|
|
}
|
|
|
|
.transfer-export-toggle:hover,
|
|
.transfer-export-toggle:focus-visible {
|
|
border-color: rgba(225, 29, 72, 0.42);
|
|
background: linear-gradient(180deg, rgba(225, 29, 72, 0.16) 0%, rgba(190, 24, 93, 0.1) 100%);
|
|
box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
|
|
outline: none;
|
|
}
|
|
|
|
.transfer-export-chevron {
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-right: 2px solid currentColor;
|
|
border-bottom: 2px solid currentColor;
|
|
transform: rotate(45deg);
|
|
transition: transform 0.22s ease;
|
|
}
|
|
|
|
.transfer-export-server.is-open .transfer-export-chevron {
|
|
transform: rotate(225deg);
|
|
}
|
|
|
|
.transfer-hint {
|
|
margin: 0;
|
|
color: var(--text-muted);
|
|
font-size: 0.92rem;
|
|
}
|
|
|
|
.transfer-export-workflows-wrap {
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
transition: max-height 0.28s ease, opacity 0.22s ease;
|
|
}
|
|
|
|
.transfer-export-server.is-open .transfer-export-workflows-wrap {
|
|
opacity: 1;
|
|
}
|
|
|
|
.transfer-export-workflows {
|
|
display: grid;
|
|
gap: 6px;
|
|
padding: 10px 12px 12px 14px;
|
|
border-top: 1px solid rgba(148, 163, 184, 0.12);
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0.028) 100%);
|
|
}
|
|
|
|
.transfer-export-workflows .transfer-export-item + .transfer-export-item {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.transfer-export-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
color: var(--text-main);
|
|
padding: 9px 11px;
|
|
border: 1px solid rgba(148, 163, 184, 0.1);
|
|
border-radius: 12px;
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0.016) 100%);
|
|
transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
|
|
}
|
|
|
|
.transfer-export-item:hover {
|
|
border-color: rgba(225, 29, 72, 0.24);
|
|
background:
|
|
linear-gradient(180deg, rgba(225, 29, 72, 0.052) 0%, rgba(255, 255, 255, 0.026) 100%);
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.transfer-export-workflows .transfer-export-item {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.transfer-export-server-head .transfer-export-item {
|
|
flex: 1;
|
|
min-width: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.transfer-export-item input[type="checkbox"] {
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
width: 18px;
|
|
height: 18px;
|
|
margin: 2px 0 0;
|
|
border: 1px solid rgba(148, 163, 184, 0.42);
|
|
border-radius: 6px;
|
|
background: rgba(9, 11, 15, 0.82);
|
|
display: grid;
|
|
place-items: center;
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
|
|
}
|
|
|
|
.transfer-export-item input[type="checkbox"]::before {
|
|
content: "";
|
|
width: 10px;
|
|
height: 10px;
|
|
transform: scale(0);
|
|
transition: transform 0.16s ease;
|
|
background: #fff1f2;
|
|
clip-path: polygon(14% 44%, 0 59%, 43% 100%, 100% 18%, 84% 4%, 40% 67%);
|
|
}
|
|
|
|
.transfer-export-item input[type="checkbox"]:hover,
|
|
.transfer-export-item input[type="checkbox"]:focus-visible {
|
|
border-color: rgba(225, 29, 72, 0.5);
|
|
box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
|
|
outline: none;
|
|
}
|
|
|
|
.transfer-export-item input[type="checkbox"]:checked {
|
|
border-color: rgba(251, 113, 133, 0.74);
|
|
background: linear-gradient(180deg, rgba(225, 29, 72, 0.96) 0%, rgba(190, 24, 93, 0.9) 100%);
|
|
}
|
|
|
|
.transfer-export-item input[type="checkbox"]:checked::before {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.transfer-export-item input[type="checkbox"]:indeterminate {
|
|
border-color: rgba(251, 113, 133, 0.74);
|
|
background: linear-gradient(180deg, rgba(225, 29, 72, 0.72) 0%, rgba(190, 24, 93, 0.68) 100%);
|
|
}
|
|
|
|
.transfer-export-item input[type="checkbox"]:indeterminate::before {
|
|
width: 8px;
|
|
height: 2px;
|
|
border-radius: 999px;
|
|
clip-path: none;
|
|
transform: scale(1);
|
|
}
|
|
|
|
.transfer-export-item-copy {
|
|
display: grid;
|
|
gap: 3px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.transfer-export-item-meta {
|
|
color: var(--text-muted);
|
|
font-size: 0.82rem;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.transfer-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 24px;
|
|
padding: 0 9px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(148, 163, 184, 0.18);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: var(--text-muted);
|
|
font-size: 0.76rem;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.transfer-chip-accent {
|
|
border-color: rgba(251, 113, 133, 0.22);
|
|
background: rgba(225, 29, 72, 0.12);
|
|
color: #ffe4e6;
|
|
}
|
|
|
|
.transfer-chip-muted {
|
|
background: rgba(148, 163, 184, 0.1);
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
.transfer-radio-option,
|
|
.transfer-section {
|
|
border: 1px solid rgba(148, 163, 184, 0.24);
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.transfer-radio-option {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
padding: 12px 14px;
|
|
cursor: pointer;
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.transfer-radio-option input {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.transfer-option-copy {
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
|
|
.transfer-option-title {
|
|
color: var(--text-main);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.transfer-option-desc {
|
|
color: var(--text-muted);
|
|
font-size: 0.88rem;
|
|
}
|
|
|
|
.transfer-section {
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
.transfer-section-title {
|
|
margin: 0 0 8px;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.transfer-list {
|
|
margin: 0;
|
|
padding-left: 18px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.transfer-list li + li {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.transfer-empty {
|
|
margin: 0;
|
|
color: var(--text-muted);
|
|
font-size: 0.92rem;
|
|
}
|
|
|
|
.transfer-warning-list {
|
|
padding: 12px 14px;
|
|
border: 1px solid rgba(251, 191, 36, 0.32);
|
|
border-radius: 12px;
|
|
background: rgba(251, 191, 36, 0.08);
|
|
}
|
|
|
|
.transfer-warning-title {
|
|
margin: 0;
|
|
color: #fde68a;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.transfer-warning-item {
|
|
margin: 0;
|
|
color: #fef3c7;
|
|
font-size: 0.92rem;
|
|
}
|
|
|
|
.btn.btn-danger {
|
|
border-color: rgba(244, 63, 94, 0.6);
|
|
background: linear-gradient(180deg, rgba(225, 29, 72, 0.96) 0%, rgba(190, 24, 93, 0.96) 100%);
|
|
color: #fff1f2;
|
|
box-shadow: 0 16px 28px rgba(136, 19, 55, 0.3);
|
|
}
|
|
|
|
.btn.btn-danger:hover,
|
|
.btn.btn-danger:focus-visible {
|
|
border-color: rgba(251, 113, 133, 0.78);
|
|
box-shadow: 0 18px 34px rgba(136, 19, 55, 0.36);
|
|
}
|
|
|
|
.server-config-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.server-config-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 24px;
|
|
padding-top: 16px;
|
|
border-top: 1px solid var(--card-border);
|
|
}
|
|
|
|
.form-row {
|
|
display: flex;
|
|
gap: 16px;
|
|
}
|
|
|
|
.flex-1 {
|
|
flex: 1;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.toggle-inline {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
cursor: pointer;
|
|
margin: 0;
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.grid-2 {
|
|
display: grid;
|
|
gap: 16px;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.compact-grid {
|
|
gap: 18px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.form-group.no-margin {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.form-help {
|
|
margin-top: 6px;
|
|
margin-bottom: 0;
|
|
font-size: 0.78rem;
|
|
color: var(--text-muted);
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.btn,
|
|
button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 44px;
|
|
padding: 10px 18px;
|
|
border: none;
|
|
border-radius: var(--radius-sm);
|
|
background: var(--primary);
|
|
color: #fff;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: background 0.2s ease, transform 0.12s ease, opacity 0.2s ease;
|
|
}
|
|
|
|
.btn-icon {
|
|
min-width: 44px;
|
|
min-height: 44px;
|
|
padding: 0;
|
|
}
|
|
|
|
.btn-icon.small {
|
|
min-width: 32px;
|
|
min-height: 32px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
|
|
.btn:hover,
|
|
button:hover {
|
|
background: var(--primary-hover);
|
|
}
|
|
|
|
.btn:active,
|
|
button:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.btn:disabled,
|
|
button:disabled,
|
|
[data-loading="true"] {
|
|
opacity: 0.7;
|
|
cursor: wait;
|
|
}
|
|
|
|
.btn-wide {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn-accent {
|
|
margin-top: 28px;
|
|
border: 1px solid rgba(157, 57, 77, 0.42);
|
|
background:
|
|
linear-gradient(135deg,
|
|
rgba(10, 10, 12, 0.96) 0%,
|
|
rgba(43, 10, 18, 0.98) 38%,
|
|
rgba(90, 21, 39, 0.98) 72%,
|
|
rgba(126, 32, 53, 0.98) 100%);
|
|
color: #fdf2f4;
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.06),
|
|
0 10px 24px rgba(76, 14, 29, 0.28);
|
|
}
|
|
|
|
.btn-accent:hover,
|
|
.btn-accent:focus-visible {
|
|
background:
|
|
linear-gradient(135deg,
|
|
rgba(8, 8, 10, 0.98) 0%,
|
|
rgba(54, 12, 22, 0.99) 36%,
|
|
rgba(112, 26, 47, 0.99) 74%,
|
|
rgba(146, 36, 60, 0.99) 100%);
|
|
border-color: rgba(190, 74, 99, 0.58);
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.08),
|
|
0 0 0 1px rgba(157, 57, 77, 0.18),
|
|
0 14px 30px rgba(76, 14, 29, 0.34);
|
|
}
|
|
|
|
.btn-secondary,
|
|
.lang-select {
|
|
border: 1px solid var(--card-border);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.btn-secondary:hover,
|
|
.btn-secondary:focus-visible,
|
|
.lang-select:hover,
|
|
.lang-select:focus-visible {
|
|
background: rgba(255, 255, 255, 0.16);
|
|
}
|
|
|
|
.btn-danger {
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.btn-danger:hover,
|
|
.btn-danger:focus-visible {
|
|
background: rgba(239, 68, 68, 0.12);
|
|
color: var(--danger);
|
|
border-color: rgba(239, 68, 68, 0.3);
|
|
}
|
|
|
|
.lang-select {
|
|
flex-shrink: 0;
|
|
width: auto;
|
|
min-width: 120px;
|
|
max-width: 140px;
|
|
min-height: 40px;
|
|
padding: 6px 34px 6px 12px;
|
|
border-radius: var(--radius-sm);
|
|
appearance: none;
|
|
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
|
|
background-repeat: no-repeat;
|
|
background-position: right 10px center;
|
|
background-size: 14px;
|
|
cursor: pointer;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
.editor-mode-badge,
|
|
.status-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 28px;
|
|
padding: 4px 10px;
|
|
border-radius: 999px;
|
|
font-size: 0.78rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.editor-mode-badge {
|
|
background: rgba(225, 29, 72, 0.15);
|
|
color: #fecdd3;
|
|
}
|
|
|
|
.status-badge {
|
|
background: #1f2937;
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.workflow-list,
|
|
.nodes-container {
|
|
display: grid;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
.workflow-toolbar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.workflow-toolbar > #workflow-search {
|
|
flex: 1 1 360px;
|
|
min-width: 260px;
|
|
}
|
|
|
|
.workflow-toolbar .custom-select,
|
|
.workflow-toolbar > #workflow-sort {
|
|
width: 192px;
|
|
flex: 0 0 192px;
|
|
}
|
|
|
|
.mapping-toolbar {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mapping-toolbar-top,
|
|
.mapping-toolbar-bottom {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.mapping-toolbar-top > #mapping-search {
|
|
flex: 1 1 360px;
|
|
min-width: 260px;
|
|
}
|
|
|
|
.mapping-toolbar-top .custom-select.is-mapping-sort-select {
|
|
width: 152px;
|
|
flex: 0 0 152px;
|
|
}
|
|
|
|
.mapping-toolbar-top .custom-select.is-mapping-sort-select .custom-select-trigger {
|
|
min-height: 42px;
|
|
padding: 8px 34px 8px 12px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.mapping-toolbar-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.mapping-exposed-only-label {
|
|
margin: 0;
|
|
min-height: 44px;
|
|
}
|
|
|
|
.workflow-list {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.workflow-item,
|
|
.node-card,
|
|
.empty-state {
|
|
border: 1px solid var(--card-border);
|
|
border-radius: var(--radius-md);
|
|
background: var(--surface-soft);
|
|
}
|
|
|
|
.workflow-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 18px;
|
|
transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
|
|
}
|
|
|
|
.workflow-item.is-reorderable {
|
|
cursor: grab;
|
|
}
|
|
|
|
.workflow-item.is-reorderable:hover {
|
|
border-color: rgba(225, 29, 72, 0.26);
|
|
box-shadow: 0 16px 36px rgba(2, 6, 23, 0.24);
|
|
}
|
|
|
|
.workflow-item.is-dragging {
|
|
opacity: 0.72;
|
|
transform: scale(0.995);
|
|
}
|
|
|
|
.workflow-item.is-drop-target {
|
|
border-color: rgba(248, 113, 113, 0.5);
|
|
box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.22), 0 18px 40px rgba(15, 23, 42, 0.32);
|
|
}
|
|
|
|
.workflow-main {
|
|
min-width: 0;
|
|
flex: 1;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
.workflow-name-row {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.workflow-name {
|
|
font-weight: 600;
|
|
font-size: 1.05rem;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.workflow-server-tag {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: var(--text-muted);
|
|
font-size: 0.72rem;
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.workflow-desc {
|
|
font-size: 0.88rem;
|
|
line-height: 1.4;
|
|
word-break: break-word;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.workflow-actions {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
margin-left: auto;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.workflow-action-edit,
|
|
.workflow-more-trigger {
|
|
width: 44px;
|
|
min-width: 44px;
|
|
height: 44px;
|
|
min-height: 44px;
|
|
padding: 0;
|
|
border-radius: 12px;
|
|
border-color: rgba(148, 163, 184, 0.14);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.workflow-more {
|
|
position: relative;
|
|
}
|
|
|
|
.workflow-more.is-open {
|
|
z-index: 15;
|
|
}
|
|
|
|
.workflow-more-menu {
|
|
position: absolute;
|
|
top: calc(100% + 8px);
|
|
right: 0;
|
|
min-width: 180px;
|
|
padding: 8px;
|
|
border: 1px solid rgba(148, 163, 184, 0.18);
|
|
border-radius: 14px;
|
|
background: rgba(7, 11, 22, 0.96);
|
|
box-shadow: 0 22px 48px rgba(2, 6, 23, 0.36);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
.workflow-more-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 10px;
|
|
width: 100%;
|
|
min-height: 38px;
|
|
border: 0;
|
|
border-radius: 10px;
|
|
background: transparent;
|
|
color: var(--text-main);
|
|
text-align: left;
|
|
padding: 0 12px;
|
|
font-size: 0.88rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.workflow-more-item svg,
|
|
.workflow-action-edit svg,
|
|
.workflow-more-trigger svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.workflow-more-item:hover,
|
|
.workflow-more-item:focus-visible {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.workflow-more-item-danger {
|
|
color: #fda4af;
|
|
}
|
|
|
|
.workflow-more-item-danger:hover,
|
|
.workflow-more-item-danger:focus-visible {
|
|
background: rgba(239, 68, 68, 0.12);
|
|
}
|
|
|
|
.workflow-drag-handle {
|
|
width: 36px;
|
|
min-width: 36px;
|
|
height: 36px;
|
|
padding: 0;
|
|
border-radius: 10px;
|
|
color: rgba(226, 232, 240, 0.78);
|
|
font-size: 1.1rem;
|
|
line-height: 1;
|
|
cursor: grab;
|
|
}
|
|
|
|
.workflow-drag-handle.is-disabled {
|
|
opacity: 0.42;
|
|
cursor: default;
|
|
}
|
|
|
|
.workflow-status-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 8px 8px 8px 10px;
|
|
border-radius: 6px;
|
|
border: 1px solid rgba(148, 163, 184, 0.14);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
font-size: 14px;
|
|
color: var(--text-main);
|
|
transition: border-color 0.18s ease, box-shadow 0.18s ease;
|
|
}
|
|
|
|
.upgrade-summary-banner {
|
|
margin-bottom: 14px;
|
|
padding: 14px 16px;
|
|
border: 1px solid rgba(251, 113, 133, 0.24);
|
|
border-radius: 14px;
|
|
background: rgba(225, 29, 72, 0.08);
|
|
}
|
|
|
|
.upgrade-summary-title {
|
|
font-size: 0.92rem;
|
|
font-weight: 700;
|
|
color: #fecdd3;
|
|
}
|
|
|
|
.upgrade-summary-meta {
|
|
margin-top: 4px;
|
|
font-size: 0.84rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.param-status-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 22px;
|
|
padding: 0 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid transparent;
|
|
font-size: 0.72rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.param-status-badge.is-retained {
|
|
background: rgba(16, 185, 129, 0.14);
|
|
border-color: rgba(16, 185, 129, 0.32);
|
|
color: #6ee7b7;
|
|
}
|
|
|
|
.param-status-badge.is-review {
|
|
background: rgba(245, 158, 11, 0.14);
|
|
border-color: rgba(245, 158, 11, 0.32);
|
|
color: #fcd34d;
|
|
}
|
|
|
|
.param-status-badge.is-new {
|
|
background: rgba(59, 130, 246, 0.14);
|
|
border-color: rgba(96, 165, 250, 0.32);
|
|
color: #93c5fd;
|
|
}
|
|
|
|
.param-meta-emphasis {
|
|
color: #fcd34d;
|
|
}
|
|
|
|
.workflow-status-toggle:hover,
|
|
.workflow-status-toggle:focus-within {
|
|
border-color: rgba(203, 213, 225, 0.58);
|
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.workflow-status-toggle .toggle-inline {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin: 0;
|
|
}
|
|
|
|
.workflow-enabled-label {
|
|
min-width: 72px;
|
|
height: 28px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid transparent;
|
|
text-align: center;
|
|
font-size: 0.82rem;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
|
|
}
|
|
|
|
.workflow-enabled-label.status-on {
|
|
background: rgba(16, 185, 129, 0.14);
|
|
border-color: rgba(16, 185, 129, 0.32);
|
|
color: #6ee7b7;
|
|
}
|
|
|
|
.workflow-enabled-label.status-off {
|
|
background: rgba(100, 116, 139, 0.18);
|
|
border-color: rgba(100, 116, 139, 0.34);
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
.empty-state {
|
|
padding: 20px;
|
|
text-align: center;
|
|
border-style: dashed;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.status-dot {
|
|
color: var(--success);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.status-dot.is-disabled {
|
|
color: #6b7280;
|
|
}
|
|
|
|
.upload-zone {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
min-height: 180px;
|
|
padding: 28px 20px;
|
|
border: 2px dashed var(--card-border);
|
|
border-radius: var(--radius-lg);
|
|
background: var(--surface-soft);
|
|
text-align: center;
|
|
cursor: pointer;
|
|
transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
|
|
}
|
|
|
|
.upload-zone:hover,
|
|
.upload-zone.is-dragging {
|
|
border-color: var(--primary);
|
|
background: rgba(225, 29, 72, 0.08);
|
|
}
|
|
|
|
.upload-zone input[type="file"] {
|
|
position: absolute;
|
|
inline-size: 1px;
|
|
block-size: 1px;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.upload-title {
|
|
font-size: 1.05rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.upload-reminder {
|
|
margin-top: 16px;
|
|
padding: 16px 18px;
|
|
border: 1px solid rgba(245, 158, 11, 0.28);
|
|
border-radius: var(--radius-md);
|
|
background: rgba(245, 158, 11, 0.08);
|
|
}
|
|
|
|
.upload-reminder-title {
|
|
margin-bottom: 10px;
|
|
color: #fde68a;
|
|
font-size: 0.98rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.upload-reminder-list {
|
|
margin: 0;
|
|
padding-left: 18px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.upload-reminder-list li+li {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.upload-reminder code {
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.mapping-section {
|
|
margin-top: 28px;
|
|
}
|
|
|
|
.node-card {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.node-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 14px 16px;
|
|
border-bottom: 1px solid var(--card-border);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
|
|
.node-header-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.node-collapse-btn {
|
|
min-width: 32px;
|
|
min-height: 32px;
|
|
font-size: 0.95rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.node-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.node-body {
|
|
padding: 16px;
|
|
}
|
|
|
|
.node-card.is-collapsed .node-body {
|
|
display: none;
|
|
}
|
|
|
|
.mapping-savebar {
|
|
position: sticky;
|
|
bottom: 10px;
|
|
margin-top: 18px;
|
|
padding: 14px;
|
|
border: 1px solid var(--card-border);
|
|
border-radius: var(--radius-md);
|
|
background: rgba(13, 16, 22, 0.94);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.mapping-shortcut-hint {
|
|
margin-bottom: 10px;
|
|
font-size: 0.82rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.param-row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
padding: 16px;
|
|
border: 1px solid var(--card-border);
|
|
border-radius: var(--radius-sm);
|
|
transition: border-color 0.2s ease, background 0.2s ease;
|
|
}
|
|
|
|
.param-row+.param-row {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.param-row.active {
|
|
border-color: rgba(225, 29, 72, 0.55);
|
|
background: rgba(225, 29, 72, 0.09);
|
|
}
|
|
|
|
.param-main {
|
|
display: flex;
|
|
gap: 16px;
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
.param-main-copy {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.param-title {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 0.94rem;
|
|
font-weight: 600;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.param-title.active {
|
|
color: #fda4af;
|
|
}
|
|
|
|
.param-config {
|
|
display: none;
|
|
gap: 14px;
|
|
width: 100%;
|
|
padding-top: 12px;
|
|
border-top: 1px solid rgba(148, 163, 184, 0.16);
|
|
}
|
|
|
|
.param-config.is-expanded {
|
|
display: grid;
|
|
}
|
|
|
|
.param-config-toggle {
|
|
flex-shrink: 0;
|
|
min-width: 22px;
|
|
min-height: 22px;
|
|
margin-left: auto;
|
|
border-radius: 6px;
|
|
font-size: 0.9rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.param-config-toggle:hover,
|
|
.param-config-toggle:focus-visible {
|
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.checkbox-inline {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.checkbox-inline input {
|
|
margin: 0;
|
|
}
|
|
|
|
.toggle-switch {
|
|
position: relative;
|
|
display: inline-flex;
|
|
flex-shrink: 0;
|
|
width: 44px;
|
|
height: 24px;
|
|
}
|
|
|
|
.toggle-switch input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.slider {
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 999px;
|
|
background: #374151;
|
|
transition: background-color 0.25s ease;
|
|
}
|
|
|
|
.slider::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 3px;
|
|
bottom: 3px;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 50%;
|
|
background: #fff;
|
|
transition: transform 0.25s ease;
|
|
}
|
|
|
|
.toggle-switch input:checked+.slider {
|
|
background: var(--primary);
|
|
}
|
|
|
|
.toggle-switch input:checked+.slider::before {
|
|
transform: translateX(20px);
|
|
}
|
|
|
|
#toast-container {
|
|
position: fixed;
|
|
right: 20px;
|
|
bottom: 20px;
|
|
z-index: 120;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.toast {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
width: min(360px, calc(100vw - 32px));
|
|
padding: 13px 14px 15px;
|
|
overflow: hidden;
|
|
border: 1px solid rgba(255, 255, 255, 0.14);
|
|
border-radius: 14px;
|
|
background:
|
|
radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 48%),
|
|
rgba(10, 13, 20, 0.88);
|
|
backdrop-filter: blur(12px);
|
|
box-shadow:
|
|
0 20px 34px rgba(0, 0, 0, 0.32),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
transform: translateX(120%) scale(0.98);
|
|
opacity: 0;
|
|
animation: slideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.toast.success {
|
|
border-color: rgba(16, 185, 129, 0.36);
|
|
}
|
|
|
|
.toast.error {
|
|
border-color: rgba(244, 63, 94, 0.36);
|
|
}
|
|
|
|
.toast.info {
|
|
border-color: rgba(59, 130, 246, 0.36);
|
|
}
|
|
|
|
.toast-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
width: 26px;
|
|
height: 26px;
|
|
margin-top: 1px;
|
|
border-radius: 999px;
|
|
font-size: 0.88rem;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
|
|
}
|
|
|
|
.toast.success .toast-icon {
|
|
background: linear-gradient(135deg, #10b981, #047857);
|
|
}
|
|
|
|
.toast.error .toast-icon {
|
|
background: linear-gradient(135deg, #fb7185, #be123c);
|
|
}
|
|
|
|
.toast.info .toast-icon {
|
|
background: linear-gradient(135deg, #60a5fa, #2563eb);
|
|
}
|
|
|
|
.toast-body {
|
|
min-width: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.toast-title {
|
|
margin: 0 0 2px;
|
|
font-size: 0.79rem;
|
|
letter-spacing: 0.02em;
|
|
text-transform: uppercase;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.toast-message {
|
|
margin: 0;
|
|
font-size: 0.92rem;
|
|
line-height: 1.4;
|
|
color: var(--text-main);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.toast.closing {
|
|
animation: slideOut 0.26s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
}
|
|
|
|
.toast-close {
|
|
width: 24px;
|
|
height: 24px;
|
|
min-height: 24px;
|
|
border: none;
|
|
border-radius: 999px;
|
|
padding: 0;
|
|
margin-top: -2px;
|
|
flex-shrink: 0;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: rgba(255, 255, 255, 0.75);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
cursor: pointer;
|
|
transition: background 0.2s ease, color 0.2s ease;
|
|
}
|
|
|
|
.toast-close:hover,
|
|
.toast-close:focus-visible {
|
|
background: rgba(255, 255, 255, 0.18);
|
|
color: #fff;
|
|
}
|
|
|
|
.toast-close:active {
|
|
transform: none;
|
|
}
|
|
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(10px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
from {
|
|
transform: translateX(120%) scale(0.98);
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
transform: translateX(0) scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes slideOut {
|
|
from {
|
|
transform: translateX(0) scale(1);
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
transform: translateX(120%) scale(0.98);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 820px) {
|
|
.param-row {
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.param-main {
|
|
min-width: 240px;
|
|
}
|
|
|
|
.param-config {
|
|
grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr) minmax(180px, 0.9fr);
|
|
align-items: start;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.shell {
|
|
padding: 52px 16px 40px;
|
|
}
|
|
|
|
.page-header,
|
|
.section-header,
|
|
.workflow-item,
|
|
.node-header {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.grid-2,
|
|
.workflow-list,
|
|
.editor-stepper {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.workflow-actions {
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.server-config-footer {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 16px;
|
|
}
|
|
|
|
.server-primary-actions {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.server-main-row,
|
|
.server-main-left {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.panel-actions {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.panel-meta {
|
|
width: fit-content;
|
|
}
|
|
|
|
.server-header-controls {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.server-status-toggle {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.server-empty-state {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.lang-select {
|
|
align-self: flex-end;
|
|
width: auto;
|
|
}
|
|
|
|
.mapping-toolbar-actions {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin-left: 0;
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.node-header-right {
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.mapping-toolbar-top,
|
|
.mapping-toolbar-bottom {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.mapping-toolbar-top > #mapping-search {
|
|
min-width: 0;
|
|
}
|
|
|
|
.mapping-toolbar-top .custom-select.is-mapping-sort-select {
|
|
width: 100%;
|
|
flex-basis: auto;
|
|
}
|
|
|
|
.form-row,
|
|
.actions {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
#toast-container {
|
|
left: 16px;
|
|
right: 16px;
|
|
bottom: 16px;
|
|
}
|
|
|
|
.toast {
|
|
min-width: auto;
|
|
}
|
|
|
|
.modal-overlay {
|
|
padding: 14px;
|
|
}
|
|
|
|
.modal-card {
|
|
width: 100%;
|
|
}
|
|
|
|
.modal-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 0;
|
|
}
|
|
|
|
.form-group-half,
|
|
.form-group-full {
|
|
grid-column: auto;
|
|
}
|
|
|
|
.modal-actions {
|
|
flex-direction: column-reverse;
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
scroll-behavior: auto !important;
|
|
}
|
|
}
|