2466 lines
41 KiB
CSS
2466 lines
41 KiB
CSS
@charset "UTF-8";
|
|
:root {
|
|
--c-primary: #6690f4;
|
|
--c-primary-dark: #3164db;
|
|
--c-bg: #f4f6f9;
|
|
--c-surface: #ffffff;
|
|
--c-text: #4e5e6a;
|
|
--c-text-strong: #2d3748;
|
|
--c-muted: #718096;
|
|
--c-border: #b0bec5;
|
|
--c-danger: #cc0000;
|
|
--focus-ring: 0 0 0 3px rgba(102, 144, 244, 0.15);
|
|
--shadow-card: 0 1px 4px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 34px;
|
|
padding: 6px 12px;
|
|
border: 1px solid transparent;
|
|
border-radius: 8px;
|
|
font: inherit;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
|
|
}
|
|
|
|
.btn--primary {
|
|
color: #ffffff;
|
|
background: var(--c-primary);
|
|
}
|
|
|
|
.btn--primary:hover {
|
|
background: var(--c-primary-dark);
|
|
}
|
|
|
|
.btn--secondary {
|
|
color: var(--c-text-strong);
|
|
border-color: var(--c-border);
|
|
background: var(--c-surface);
|
|
}
|
|
|
|
.btn--secondary:hover {
|
|
border-color: #cbd5e0;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.btn--danger {
|
|
color: #ffffff;
|
|
border-color: #b91c1c;
|
|
background: #dc2626;
|
|
}
|
|
|
|
.btn--danger:hover {
|
|
border-color: #991b1b;
|
|
background: #b91c1c;
|
|
}
|
|
|
|
.btn--sm {
|
|
min-height: 28px;
|
|
padding: 3px 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.btn--block {
|
|
width: 100%;
|
|
}
|
|
|
|
.btn:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.btn:focus-visible {
|
|
outline: none;
|
|
box-shadow: var(--focus-ring);
|
|
border-color: var(--c-primary);
|
|
}
|
|
|
|
.form-control {
|
|
width: 100%;
|
|
min-height: 34px;
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 8px;
|
|
padding: 5px 10px;
|
|
font: inherit;
|
|
color: var(--c-text-strong);
|
|
background: #ffffff;
|
|
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.form-control:focus {
|
|
outline: none;
|
|
border-color: var(--c-primary);
|
|
box-shadow: var(--focus-ring);
|
|
}
|
|
|
|
.input {
|
|
min-height: 34px;
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 8px;
|
|
padding: 5px 10px;
|
|
font: inherit;
|
|
color: var(--c-text-strong);
|
|
background: #ffffff;
|
|
}
|
|
|
|
.input--sm {
|
|
min-height: 28px;
|
|
padding: 3px 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.flash {
|
|
padding: 8px 12px;
|
|
border-radius: 6px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.flash--success {
|
|
border: 1px solid #b7ebcf;
|
|
background: #f0fff6;
|
|
color: #0f6b39;
|
|
}
|
|
|
|
.flash--error {
|
|
border: 1px solid #fed7d7;
|
|
background: #fff5f5;
|
|
color: var(--c-danger);
|
|
}
|
|
|
|
.alert {
|
|
padding: 12px 14px;
|
|
border-radius: 8px;
|
|
border: 1px solid transparent;
|
|
font-size: 13px;
|
|
min-height: 44px;
|
|
}
|
|
|
|
.alert--danger {
|
|
border-color: #fed7d7;
|
|
background: #fff5f5;
|
|
color: var(--c-danger);
|
|
}
|
|
|
|
.alert--success {
|
|
border-color: #b7ebcf;
|
|
background: #f0fff6;
|
|
color: #0f6b39;
|
|
}
|
|
|
|
.alert--warning {
|
|
border-color: #f7dd8b;
|
|
background: #fff8e8;
|
|
color: #815500;
|
|
}
|
|
|
|
.form-field {
|
|
display: grid;
|
|
gap: 5px;
|
|
}
|
|
|
|
.field-label {
|
|
color: var(--c-text-strong);
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.table-wrap {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
.table-wrap--visible {
|
|
overflow: visible !important;
|
|
overflow-x: visible !important;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: var(--c-surface);
|
|
}
|
|
|
|
.table th,
|
|
.table td {
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid var(--c-border);
|
|
text-align: left;
|
|
}
|
|
|
|
.table th {
|
|
color: var(--c-text-strong);
|
|
font-weight: 700;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.table--details th {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.table--details th:first-child,
|
|
.table--details td:first-child {
|
|
width: 36px;
|
|
text-align: center;
|
|
}
|
|
|
|
.pagination {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.pagination__item {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 36px;
|
|
height: 36px;
|
|
padding: 0 10px;
|
|
border-radius: 8px;
|
|
border: 1px solid var(--c-border);
|
|
color: var(--c-text-strong);
|
|
background: var(--c-surface);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.pagination__item:hover {
|
|
border-color: #cbd5e0;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.pagination__item.is-active {
|
|
border-color: var(--c-primary);
|
|
color: var(--c-primary);
|
|
background: #edf2ff;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Roboto", "Segoe UI", sans-serif;
|
|
font-size: 13px;
|
|
color: var(--c-text);
|
|
background: var(--c-bg);
|
|
}
|
|
|
|
a {
|
|
color: var(--c-primary);
|
|
}
|
|
|
|
.app-shell {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
}
|
|
|
|
.sidebar {
|
|
width: 260px;
|
|
min-width: 260px;
|
|
flex-shrink: 0;
|
|
overflow: hidden;
|
|
transition: width 0.22s ease, min-width 0.22s ease;
|
|
border-right: 1px solid #243041;
|
|
background: #111a28;
|
|
padding: 18px 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sidebar.is-collapsed {
|
|
width: 52px;
|
|
min-width: 52px;
|
|
}
|
|
|
|
.sidebar__brand {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin: 4px 4px 16px;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.sidebar__brand-text {
|
|
color: #e9f0ff;
|
|
font-size: 24px;
|
|
font-weight: 300;
|
|
letter-spacing: -0.02em;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
.sidebar__brand-text strong {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.sidebar__collapse-btn {
|
|
flex-shrink: 0;
|
|
width: 28px;
|
|
height: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: transparent;
|
|
border: 1px solid #2a3a54;
|
|
border-radius: 6px;
|
|
color: #64748b;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
transition: background 0.15s, color 0.15s;
|
|
}
|
|
.sidebar__collapse-btn:hover {
|
|
background: #1b2a3f;
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
.sidebar__collapse-icon {
|
|
display: block;
|
|
transition: transform 0.22s ease;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.sidebar.is-collapsed .sidebar__collapse-icon {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.sidebar__nav {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.sidebar__link {
|
|
border-radius: 8px;
|
|
padding: 10px 12px;
|
|
text-decoration: none;
|
|
color: #cbd5e1;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.sidebar__link:hover {
|
|
color: #f8fafc;
|
|
background: #1b2a3f;
|
|
}
|
|
|
|
.sidebar__link.is-active {
|
|
color: #ffffff;
|
|
background: #2e4f93;
|
|
}
|
|
|
|
.sidebar__group {
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
|
|
.sidebar__group-toggle {
|
|
list-style: none;
|
|
border-radius: 8px;
|
|
padding: 9px 10px;
|
|
color: #cbd5e1;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 9px;
|
|
white-space: nowrap;
|
|
user-select: none;
|
|
}
|
|
|
|
.sidebar__group-toggle::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
.sidebar__group:hover .sidebar__group-toggle,
|
|
.sidebar__group-toggle:hover {
|
|
color: #f8fafc;
|
|
background: #1b2a3f;
|
|
}
|
|
|
|
.sidebar__group.is-active .sidebar__group-toggle {
|
|
color: #ffffff;
|
|
background: #2e4f93;
|
|
}
|
|
|
|
.sidebar__icon {
|
|
flex-shrink: 0;
|
|
width: 18px;
|
|
height: 18px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.sidebar__label {
|
|
flex: 1;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar__toggle-arrow {
|
|
flex-shrink: 0;
|
|
margin-left: auto;
|
|
opacity: 0.5;
|
|
transition: transform 0.18s ease;
|
|
}
|
|
|
|
details[open] > .sidebar__group-toggle .sidebar__toggle-arrow {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.sidebar__group-links {
|
|
display: grid;
|
|
gap: 2px;
|
|
padding-left: 12px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar__sublink {
|
|
border-radius: 6px;
|
|
padding: 7px 10px 7px 8px;
|
|
text-decoration: none;
|
|
color: #94a3b8;
|
|
font-size: 12.5px;
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
white-space: nowrap;
|
|
}
|
|
.sidebar__sublink::before {
|
|
content: "";
|
|
flex-shrink: 0;
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: rgba(148, 163, 184, 0.3);
|
|
transition: background 0.15s;
|
|
}
|
|
.sidebar__sublink:hover {
|
|
color: #e2e8f0;
|
|
background: #1b2a3f;
|
|
}
|
|
.sidebar__sublink:hover::before {
|
|
background: rgba(148, 163, 184, 0.65);
|
|
}
|
|
.sidebar__sublink.is-active {
|
|
color: #ffffff;
|
|
background: rgba(46, 79, 147, 0.55);
|
|
}
|
|
.sidebar__sublink.is-active::before {
|
|
background: #93c5fd;
|
|
}
|
|
|
|
.app-main {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.topbar {
|
|
height: 50px;
|
|
border-bottom: 1px solid var(--c-border);
|
|
background: var(--c-surface);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 20px;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.brand {
|
|
font-size: 22px;
|
|
font-weight: 300;
|
|
letter-spacing: -0.02em;
|
|
color: var(--c-text-strong);
|
|
}
|
|
|
|
.brand strong {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.container {
|
|
max-width: none;
|
|
width: calc(100% - 20px);
|
|
margin: 12px 10px;
|
|
padding: 0 4px 14px;
|
|
}
|
|
|
|
.card {
|
|
background: var(--c-surface);
|
|
border-radius: 10px;
|
|
box-shadow: var(--shadow-card);
|
|
padding: 14px;
|
|
}
|
|
|
|
.card h1 {
|
|
margin: 0 0 10px;
|
|
color: var(--c-text-strong);
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.muted {
|
|
color: var(--c-muted);
|
|
}
|
|
|
|
.accent {
|
|
color: var(--c-primary);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.users-form {
|
|
display: grid;
|
|
gap: 14px;
|
|
max-width: 460px;
|
|
}
|
|
|
|
.form-field {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.section-title {
|
|
margin: 0;
|
|
color: var(--c-text-strong);
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
h2.section-title,
|
|
h3.section-title,
|
|
h4.section-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-weight: 600;
|
|
padding: 6px 0;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
color: var(--c-primary, #2563eb);
|
|
}
|
|
h2.section-title::before,
|
|
h3.section-title::before,
|
|
h4.section-title::before {
|
|
content: "■";
|
|
font-size: 0.55em;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
h3.section-title,
|
|
h4.section-title {
|
|
font-size: 15px;
|
|
}
|
|
h3.section-title::before,
|
|
h4.section-title::before {
|
|
content: "◆";
|
|
font-size: 0.5em;
|
|
}
|
|
|
|
.mt-0 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.mt-4 {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.mt-12 {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.mt-16 {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.settings-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.settings-nav {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.settings-nav__link {
|
|
text-decoration: none;
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 8px;
|
|
padding: 8px 12px;
|
|
color: var(--c-text-strong);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.settings-nav__link:hover {
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.settings-nav__link.is-active {
|
|
border-color: var(--c-primary);
|
|
color: var(--c-primary);
|
|
background: #edf2ff;
|
|
}
|
|
|
|
.settings-stat {
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.settings-stat__label {
|
|
display: block;
|
|
color: var(--c-muted);
|
|
font-size: 12px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.settings-stat__value {
|
|
color: var(--c-text-strong);
|
|
font-size: 20px;
|
|
}
|
|
|
|
.settings-logs {
|
|
margin: 0;
|
|
padding: 12px;
|
|
border-radius: 8px;
|
|
border: 1px solid var(--c-border);
|
|
background: #0b1220;
|
|
color: #d1d5db;
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
overflow: auto;
|
|
}
|
|
|
|
.settings-allegro-callback {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
color: var(--c-text-strong);
|
|
font-size: 12px;
|
|
line-height: 1.45;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.page-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.filters-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.filters-actions {
|
|
display: flex;
|
|
align-items: end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.product-form .form-control {
|
|
width: 100%;
|
|
}
|
|
|
|
.form-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.form-grid-2 {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.form-grid-3 {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.form-grid-4 {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.form-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.form-actions .btn {
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.statuses-form {
|
|
display: grid;
|
|
gap: 8px;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.statuses-form .form-actions {
|
|
grid-column: 1/-1;
|
|
}
|
|
|
|
.statuses-color-input {
|
|
min-height: 32px;
|
|
padding: 2px;
|
|
}
|
|
|
|
.statuses-hint {
|
|
grid-column: 1/-1;
|
|
margin: 0;
|
|
}
|
|
|
|
.statuses-group-block {
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 10px;
|
|
padding: 8px;
|
|
background: #fbfdff;
|
|
}
|
|
|
|
.statuses-group-block__head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.statuses-group-block__title {
|
|
margin: 0;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: var(--c-text-strong);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.statuses-color-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(15, 23, 42, 0.15);
|
|
}
|
|
|
|
.statuses-dnd-list {
|
|
margin: 6px 0 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.statuses-dnd-item {
|
|
display: grid;
|
|
grid-template-columns: 24px 1fr;
|
|
gap: 6px;
|
|
border: 1px solid #dce4f0;
|
|
border-radius: 8px;
|
|
background: #fff;
|
|
padding: 6px;
|
|
}
|
|
|
|
.statuses-dnd-item__content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.statuses-dnd-item.is-dragging {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.statuses-dnd-item__drag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px dashed #cbd5e1;
|
|
border-radius: 6px;
|
|
color: #64748b;
|
|
cursor: grab;
|
|
user-select: none;
|
|
font-weight: 700;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.statuses-dnd-item__drag:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.statuses-inline-form {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.statuses-inline-form--row {
|
|
grid-template-columns: minmax(180px, 1.4fr) minmax(150px, 1fr) auto auto auto;
|
|
align-items: center;
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
.statuses-inline-form--row-group {
|
|
grid-template-columns: minmax(180px, 1.5fr) 56px auto auto auto;
|
|
align-items: center;
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
.statuses-inline-form--row .form-control,
|
|
.statuses-inline-form--row-group .form-control {
|
|
min-height: 30px;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.statuses-inline-form--row .btn,
|
|
.statuses-inline-form--row-group .btn,
|
|
.statuses-inline-delete .btn {
|
|
min-height: 30px;
|
|
padding: 4px 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.statuses-inline-check {
|
|
margin-top: 0;
|
|
white-space: nowrap;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.statuses-inline-delete {
|
|
margin: 0;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.statuses-code-label {
|
|
font-size: 12px;
|
|
color: var(--c-muted);
|
|
}
|
|
|
|
.statuses-code-readonly {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
white-space: nowrap;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.statuses-code-readonly code {
|
|
background: #eef2f7;
|
|
border-radius: 6px;
|
|
padding: 1px 6px;
|
|
color: #1f2937;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.field-inline {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.modal-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(15, 23, 42, 0.5);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 16px;
|
|
z-index: 200;
|
|
}
|
|
|
|
.modal-backdrop[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.modal {
|
|
width: min(560px, 100%);
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.modal__header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
padding: 16px 18px;
|
|
border-bottom: 1px solid var(--c-border);
|
|
}
|
|
|
|
.modal__header h3 {
|
|
margin: 0;
|
|
font-size: 18px;
|
|
color: var(--c-text-strong);
|
|
}
|
|
|
|
.modal__body {
|
|
padding: 16px 18px 18px;
|
|
}
|
|
|
|
.status-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid #fed7d7;
|
|
background: #fff5f5;
|
|
color: #9b2c2c;
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.status-pill.is-active {
|
|
border-color: #b7ebcf;
|
|
background: #f0fff6;
|
|
color: #0f6b39;
|
|
}
|
|
|
|
.table-row-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.table-row-actions form {
|
|
margin: 0;
|
|
}
|
|
|
|
.table-list {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.table-list__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.table-list__left {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.table-list-header-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.js-filter-toggle-btn.is-active {
|
|
border-color: #cbd5e0;
|
|
background: #edf2ff;
|
|
color: var(--c-primary-dark);
|
|
}
|
|
|
|
.table-filter-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 18px;
|
|
height: 18px;
|
|
padding: 0 5px;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
background: var(--c-primary);
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.table-filters-wrapper {
|
|
display: none;
|
|
}
|
|
|
|
.table-filters-wrapper.is-open {
|
|
display: block;
|
|
}
|
|
|
|
.table-list-filters {
|
|
display: grid;
|
|
gap: 12px;
|
|
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
|
|
}
|
|
|
|
.table-col-toggle-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.table-col-toggle-dropdown {
|
|
display: none;
|
|
position: absolute;
|
|
right: 0;
|
|
top: calc(100% + 6px);
|
|
z-index: 30;
|
|
width: 260px;
|
|
max-height: 360px;
|
|
overflow: auto;
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 10px;
|
|
background: #fff;
|
|
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
|
|
}
|
|
|
|
.table-col-toggle-dropdown.is-open {
|
|
display: block;
|
|
}
|
|
|
|
.table-col-toggle-header {
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid var(--c-border);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
color: var(--c-muted);
|
|
}
|
|
|
|
.table-col-toggle-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 8px 12px;
|
|
font-size: 13px;
|
|
color: var(--c-text-strong);
|
|
}
|
|
|
|
.table-col-toggle-item:hover {
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.table-col-toggle-footer {
|
|
border-top: 1px solid var(--c-border);
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.table-col-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.table-col-switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 34px;
|
|
min-width: 34px;
|
|
height: 18px;
|
|
}
|
|
|
|
.table-col-switch input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
position: absolute;
|
|
}
|
|
|
|
.table-col-switch-slider {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: #cbd5e1;
|
|
border-radius: 999px;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.table-col-switch-slider::before {
|
|
content: "";
|
|
position: absolute;
|
|
height: 14px;
|
|
width: 14px;
|
|
left: 2px;
|
|
bottom: 2px;
|
|
background: #fff;
|
|
border-radius: 50%;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
.table-col-switch input:checked + .table-col-switch-slider {
|
|
background: #16a34a;
|
|
}
|
|
|
|
.table-col-switch input:checked + .table-col-switch-slider::before {
|
|
transform: translateX(16px);
|
|
}
|
|
|
|
.table-sort-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: var(--c-text-strong);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.table-sort-link:hover {
|
|
color: var(--c-primary-dark);
|
|
}
|
|
|
|
.table-sort-icon.is-muted {
|
|
color: #a0aec0;
|
|
}
|
|
|
|
.table-list__footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.table-list-per-page-form {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.table-list-per-page-form .form-control {
|
|
min-width: 90px;
|
|
}
|
|
|
|
.table-select-col {
|
|
width: 44px;
|
|
text-align: center;
|
|
}
|
|
|
|
.table-select-toggle {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.table-select-toggle input[type=checkbox] {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.orders-page .orders-head {
|
|
background: linear-gradient(120deg, #f8fbff 0%, #eef5ff 100%);
|
|
border: 1px solid #dbe7fb;
|
|
}
|
|
.orders-page .table-list {
|
|
border: 1px solid #dde5f2;
|
|
border-radius: 12px;
|
|
box-shadow: 0 6px 16px rgba(20, 44, 86, 0.08);
|
|
}
|
|
.orders-page .table-list__header {
|
|
padding: 10px 6px 2px;
|
|
}
|
|
.orders-page .table-list-filters {
|
|
padding: 6px 6px 2px;
|
|
border-top: 1px solid #ebf0f7;
|
|
border-bottom: 1px solid #ebf0f7;
|
|
background: #f9fbff;
|
|
}
|
|
.orders-page .table-wrap {
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
border: 1px solid #e7edf6;
|
|
}
|
|
.orders-page .table thead th {
|
|
background: #f3f7fd;
|
|
color: #30435f;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.03em;
|
|
}
|
|
.orders-page .table tbody td {
|
|
vertical-align: middle;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
border-bottom-color: #edf2f8;
|
|
}
|
|
.orders-page .table tbody tr:hover td {
|
|
background: #f9fcff;
|
|
}
|
|
|
|
.orders-list-page {
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.orders-head {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.orders-stats {
|
|
display: inline-grid;
|
|
grid-template-columns: repeat(3, minmax(86px, auto));
|
|
gap: 8px;
|
|
}
|
|
|
|
.orders-stat {
|
|
border: 1px solid #d8e2f0;
|
|
background: #f8fbff;
|
|
border-radius: 8px;
|
|
padding: 6px 8px;
|
|
line-height: 1.15;
|
|
}
|
|
.orders-stat__label {
|
|
display: block;
|
|
color: #5f6f83;
|
|
font-size: 11px;
|
|
margin-bottom: 2px;
|
|
}
|
|
.orders-stat__value {
|
|
color: #12233a;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.orders-ref {
|
|
display: grid;
|
|
gap: 2px;
|
|
min-width: 170px;
|
|
}
|
|
.orders-ref__main {
|
|
font-weight: 700;
|
|
color: #0f1f35;
|
|
font-size: 14px;
|
|
}
|
|
.orders-ref__meta {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: 4px 10px;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.orders-buyer {
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
.orders-buyer__name {
|
|
color: #0f172a;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
}
|
|
.orders-buyer__meta {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: 4px 10px;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.orders-status-wrap {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.order-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid #d8e1ef;
|
|
background: #f8fafc;
|
|
color: #334155;
|
|
border-radius: 999px;
|
|
padding: 2px 8px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
line-height: 1.1;
|
|
}
|
|
.order-tag.is-info {
|
|
border-color: #bfdbfe;
|
|
background: #eff6ff;
|
|
color: #1d4ed8;
|
|
}
|
|
.order-tag.is-success {
|
|
border-color: #bbf7d0;
|
|
background: #f0fdf4;
|
|
color: #166534;
|
|
}
|
|
.order-tag.is-danger {
|
|
border-color: #fecaca;
|
|
background: #fef2f2;
|
|
color: #b91c1c;
|
|
}
|
|
.order-tag.is-warn {
|
|
border-color: #fde68a;
|
|
background: #fffbeb;
|
|
color: #92400e;
|
|
}
|
|
.order-tag.is-cod {
|
|
border-color: #f9a8d4;
|
|
background: #fdf2f8;
|
|
color: #9d174d;
|
|
}
|
|
.order-tag.is-unpaid {
|
|
border-color: #fca5a5;
|
|
background: #fef2f2;
|
|
color: #b91c1c;
|
|
}
|
|
|
|
.orders-mini {
|
|
font-size: 14px;
|
|
color: #223247;
|
|
line-height: 1.25;
|
|
}
|
|
.orders-mini__delivery {
|
|
font-size: 12px;
|
|
color: #64748b;
|
|
margin-bottom: 2px;
|
|
max-width: 160px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.orders-products {
|
|
display: grid;
|
|
gap: 4px;
|
|
min-width: 240px;
|
|
}
|
|
.orders-products__meta, .orders-products__more {
|
|
font-size: 12px;
|
|
color: #64748b;
|
|
}
|
|
|
|
.orders-product {
|
|
display: grid;
|
|
grid-template-columns: 48px 1fr;
|
|
gap: 6px;
|
|
align-items: center;
|
|
}
|
|
.orders-product__thumb {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 4px;
|
|
border: 1px solid #dbe3ef;
|
|
object-fit: cover;
|
|
background: #fff;
|
|
}
|
|
.orders-product__thumb--empty {
|
|
display: inline-block;
|
|
background: #eef2f7;
|
|
border-style: dashed;
|
|
}
|
|
.orders-product__txt {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 1px;
|
|
}
|
|
.orders-product__name {
|
|
font-size: 14px;
|
|
color: #0f172a;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.orders-product__qty {
|
|
font-size: 12px;
|
|
color: #64748b;
|
|
}
|
|
|
|
.orders-image-hover-wrap {
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: zoom-in;
|
|
}
|
|
|
|
.orders-image-hover-popup {
|
|
display: none;
|
|
position: fixed;
|
|
left: auto;
|
|
top: auto;
|
|
width: 350px;
|
|
max-height: 350px;
|
|
object-fit: contain;
|
|
border-radius: 8px;
|
|
background: #fff;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
|
|
border: 1px solid #dfe3ea;
|
|
z-index: 100;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.orders-image-hover-wrap:hover .orders-image-hover-popup {
|
|
display: block;
|
|
}
|
|
|
|
.activity-type-badge {
|
|
display: inline-block;
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
background: #e2e8f0;
|
|
color: #334155;
|
|
}
|
|
.activity-type-badge--status_change {
|
|
background: #dbeafe;
|
|
color: #1e40af;
|
|
}
|
|
.activity-type-badge--payment {
|
|
background: #dcfce7;
|
|
color: #166534;
|
|
}
|
|
.activity-type-badge--invoice {
|
|
background: #fef3c7;
|
|
color: #92400e;
|
|
}
|
|
.activity-type-badge--shipment {
|
|
background: #e0e7ff;
|
|
color: #3730a3;
|
|
}
|
|
.activity-type-badge--message {
|
|
background: #f3e8ff;
|
|
color: #6b21a8;
|
|
}
|
|
.activity-type-badge--document {
|
|
background: #fce7f3;
|
|
color: #9d174d;
|
|
}
|
|
.activity-type-badge--import {
|
|
background: #f1f5f9;
|
|
color: #475569;
|
|
}
|
|
.activity-type-badge--note {
|
|
background: #ecfdf5;
|
|
color: #065f46;
|
|
}
|
|
|
|
.text-nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.orders-money {
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
.orders-money__main {
|
|
color: #0f172a;
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
}
|
|
.orders-money__meta {
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.table-list[data-table-list-id=orders] {
|
|
gap: 8px;
|
|
}
|
|
.table-list[data-table-list-id=orders] .table-list__header {
|
|
padding: 2px 0 0;
|
|
}
|
|
.table-list[data-table-list-id=orders] .table-list-filters {
|
|
gap: 8px;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
}
|
|
.table-list[data-table-list-id=orders] .table th,
|
|
.table-list[data-table-list-id=orders] .table td {
|
|
padding: 6px 8px;
|
|
}
|
|
.table-list[data-table-list-id=orders] .table thead th {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.02em;
|
|
white-space: nowrap;
|
|
}
|
|
.table-list[data-table-list-id=orders] .table tbody td {
|
|
vertical-align: top;
|
|
font-size: 14px;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.order-show-layout {
|
|
display: grid;
|
|
grid-template-columns: 220px minmax(0, 1fr);
|
|
gap: 12px;
|
|
align-items: start;
|
|
}
|
|
|
|
.order-statuses-side {
|
|
position: sticky;
|
|
top: 60px;
|
|
padding: 10px;
|
|
}
|
|
.order-statuses-side__title {
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
color: #0f172a;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.order-status-group {
|
|
margin-bottom: 10px;
|
|
}
|
|
.order-status-group__name {
|
|
font-size: 12px;
|
|
color: #475569;
|
|
font-weight: 700;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.order-status-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
padding: 4px 6px;
|
|
border-radius: 6px;
|
|
color: #334155;
|
|
font-size: 12px;
|
|
text-decoration: none;
|
|
}
|
|
.order-status-row__count {
|
|
min-width: 24px;
|
|
text-align: center;
|
|
border-radius: 999px;
|
|
background: var(--status-color, #64748b);
|
|
padding: 1px 6px;
|
|
font-weight: 700;
|
|
font-size: 11px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.order-status-row:hover {
|
|
background: #f1f5f9;
|
|
}
|
|
|
|
.order-status-row.is-active {
|
|
background: rgba(15, 23, 42, 0.06);
|
|
color: #0f172a;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.order-show-main {
|
|
min-width: 0;
|
|
}
|
|
|
|
.order-details-actions {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
gap: 6px;
|
|
}
|
|
|
|
.order-details-page {
|
|
padding: 12px;
|
|
}
|
|
|
|
.order-details-head {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.order-back-link {
|
|
color: #475569;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.order-back-link:hover {
|
|
color: #1d4ed8;
|
|
}
|
|
|
|
.order-details-sub {
|
|
display: inline-flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.order-details-pill {
|
|
border-radius: 999px;
|
|
padding: 5px 10px;
|
|
background: #eef6ff;
|
|
border: 1px solid #cfe2ff;
|
|
color: #1d4ed8;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.order-status-change {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.order-status-change__form {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.order-status-change__select {
|
|
min-width: 180px;
|
|
}
|
|
|
|
.order-details-tabs {
|
|
display: flex;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.order-details-tab {
|
|
border: 1px solid #d6deea;
|
|
border-radius: 8px;
|
|
padding: 5px 10px;
|
|
color: #475569;
|
|
font-size: 12px;
|
|
background: #f8fafc;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.order-details-tab.is-active {
|
|
border-color: #bfdbfe;
|
|
color: #1d4ed8;
|
|
background: #eff6ff;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.order-item-cell {
|
|
display: grid;
|
|
grid-template-columns: 44px 1fr;
|
|
gap: 8px;
|
|
align-items: center;
|
|
min-width: 260px;
|
|
}
|
|
|
|
.order-item-thumb {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 6px;
|
|
border: 1px solid #dbe3ef;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.order-item-thumb--empty {
|
|
display: inline-block;
|
|
background: #eef2f7;
|
|
border-style: dashed;
|
|
}
|
|
|
|
.order-item-name {
|
|
font-weight: 600;
|
|
color: #0f172a;
|
|
}
|
|
|
|
.order-grid-2 {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.order-grid-3 {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.order-kv {
|
|
margin: 0;
|
|
display: grid;
|
|
grid-template-columns: 150px 1fr;
|
|
gap: 6px 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.payment-summary {
|
|
display: grid;
|
|
gap: 6px;
|
|
max-width: 420px;
|
|
}
|
|
|
|
.payment-summary__row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.payment-summary__label {
|
|
width: 150px;
|
|
flex-shrink: 0;
|
|
color: #64748b;
|
|
}
|
|
|
|
.payment-summary__value {
|
|
font-weight: 600;
|
|
color: #0f172a;
|
|
}
|
|
|
|
.order-kv dt {
|
|
color: #64748b;
|
|
}
|
|
|
|
.order-kv dd {
|
|
margin: 0;
|
|
color: #0f172a;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.order-address {
|
|
display: grid;
|
|
gap: 3px;
|
|
font-size: 12px;
|
|
color: #0f172a;
|
|
}
|
|
|
|
.order-events {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.order-event {
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
padding: 8px;
|
|
background: #fbfdff;
|
|
}
|
|
|
|
.order-event__head {
|
|
color: #64748b;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.order-event__body {
|
|
margin-top: 4px;
|
|
color: #0f172a;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.order-tab-panel {
|
|
display: none;
|
|
}
|
|
|
|
.order-tab-panel.is-active {
|
|
display: block;
|
|
}
|
|
|
|
.order-empty-placeholder {
|
|
border: 1px dashed #cbd5e1;
|
|
border-radius: 8px;
|
|
min-height: 180px;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.order-status-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 4px 10px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
border: 1px solid #cbd5e1;
|
|
color: #334155;
|
|
background: #f8fafc;
|
|
}
|
|
.order-status-badge.is-info {
|
|
border-color: #bfdbfe;
|
|
background: #eff6ff;
|
|
color: #1d4ed8;
|
|
}
|
|
.order-status-badge.is-success {
|
|
border-color: #bbf7d0;
|
|
background: #f0fdf4;
|
|
color: #166534;
|
|
}
|
|
.order-status-badge.is-danger {
|
|
border-color: #fecaca;
|
|
background: #fef2f2;
|
|
color: #b91c1c;
|
|
}
|
|
.order-status-badge.is-warn {
|
|
border-color: #fde68a;
|
|
background: #fffbeb;
|
|
color: #92400e;
|
|
}
|
|
.order-status-badge.is-empty {
|
|
color: #94a3b8;
|
|
}
|
|
|
|
.order-buyer {
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
.order-buyer__name {
|
|
color: #0f172a;
|
|
font-weight: 600;
|
|
}
|
|
.order-buyer__email {
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.table-inline-action {
|
|
display: inline-block;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.product-name-cell {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.product-name-thumb {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 6px;
|
|
object-fit: cover;
|
|
border: 1px solid var(--c-border);
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.product-name-thumb--empty {
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 6px;
|
|
border: 1px dashed #cbd5e0;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.product-name-thumb-btn {
|
|
border: 0;
|
|
padding: 0;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.product-name-thumb-btn:focus-visible {
|
|
outline: none;
|
|
box-shadow: var(--focus-ring);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.modal--image-preview {
|
|
width: min(760px, 100%);
|
|
}
|
|
|
|
.product-image-preview__img {
|
|
display: block;
|
|
width: 100%;
|
|
max-height: 70vh;
|
|
object-fit: contain;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.product-images-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.product-image-card {
|
|
border: 1px solid #dfe3ea;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
background: #fff;
|
|
}
|
|
|
|
.product-image-card__thumb-wrap {
|
|
position: relative;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: #f2f5f8;
|
|
}
|
|
|
|
.product-image-card__thumb {
|
|
width: 100%;
|
|
height: 160px;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.product-image-card__thumb.is-empty {
|
|
height: 160px;
|
|
display: grid;
|
|
place-items: center;
|
|
color: #6b7785;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.product-image-card__badge {
|
|
display: none;
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 8px;
|
|
background: #1f7a43;
|
|
color: #fff;
|
|
padding: 3px 8px;
|
|
border-radius: 999px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.product-image-card.is-main .product-image-card__badge {
|
|
display: inline-block;
|
|
}
|
|
|
|
.product-image-card__meta {
|
|
margin-top: 8px;
|
|
font-size: 11px;
|
|
line-height: 1.25;
|
|
color: #5f6b79;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.product-image-card__actions {
|
|
margin-top: 10px;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
}
|
|
|
|
.product-image-card__actions .btn {
|
|
min-height: 34px;
|
|
font-size: 12px;
|
|
line-height: 1.2;
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
.product-links-search-form {
|
|
display: grid;
|
|
gap: 12px;
|
|
grid-template-columns: minmax(220px, 320px) minmax(220px, 1fr) auto;
|
|
align-items: end;
|
|
}
|
|
|
|
.product-links-head {
|
|
display: grid;
|
|
gap: 8px;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.product-tabs-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.product-links-inline-form {
|
|
display: grid;
|
|
gap: 8px;
|
|
grid-template-columns: minmax(140px, 1fr) minmax(140px, 1fr) auto;
|
|
align-items: center;
|
|
}
|
|
|
|
.product-links-actions-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.product-links-actions-row .product-links-relink-form {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.product-links-unlink-form {
|
|
margin: 0;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.product-link-status-cell {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.product-link-alert-indicator {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 999px;
|
|
border: 1px solid #f59e0b;
|
|
background: #fffbeb;
|
|
color: #b45309;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
cursor: help;
|
|
}
|
|
|
|
.product-link-events-list {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.product-link-events-list li {
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
|
|
.product-link-events-type {
|
|
font-weight: 600;
|
|
color: var(--c-text-strong);
|
|
}
|
|
|
|
.product-link-events-date {
|
|
color: var(--c-muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.product-show-images-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.product-show-image-card {
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 10px;
|
|
background: #fff;
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
}
|
|
.product-show-image-card__meta {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.product-show-image-path {
|
|
font-size: 12px;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
}
|
|
.product-show-image-path summary {
|
|
cursor: pointer;
|
|
color: var(--c-muted, #888);
|
|
list-style: none;
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
}
|
|
.product-show-image-path summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
.product-show-image-path summary::after {
|
|
content: " ▾";
|
|
}
|
|
.product-show-image-path[open] summary::after {
|
|
content: " ▴";
|
|
}
|
|
.product-show-image-path__url {
|
|
margin-top: 4px;
|
|
word-break: break-all;
|
|
overflow-wrap: break-word;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.product-show-image {
|
|
width: 100%;
|
|
max-height: 260px;
|
|
object-fit: cover;
|
|
border-radius: 8px;
|
|
border: 1px solid #d9e0ea;
|
|
}
|
|
|
|
.shipment-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.searchable-select {
|
|
position: relative;
|
|
}
|
|
.searchable-select__trigger {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
min-height: 34px;
|
|
}
|
|
.searchable-select__trigger::after {
|
|
content: "";
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 4px solid transparent;
|
|
border-right: 4px solid transparent;
|
|
border-top: 5px solid var(--c-text-muted, #6b7280);
|
|
margin-left: 8px;
|
|
flex-shrink: 0;
|
|
}
|
|
.searchable-select__trigger--placeholder {
|
|
color: var(--c-text-muted, #6b7280);
|
|
}
|
|
.searchable-select__dropdown {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 100%;
|
|
z-index: 50;
|
|
max-height: 280px;
|
|
overflow: auto;
|
|
background: #fff;
|
|
border: 1px solid var(--c-border);
|
|
border-top: 0;
|
|
border-radius: 0 0 8px 8px;
|
|
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
|
|
}
|
|
.searchable-select__dropdown.is-open {
|
|
display: block;
|
|
}
|
|
.searchable-select__search {
|
|
position: sticky;
|
|
top: 0;
|
|
border: none !important;
|
|
border-bottom: 1px solid var(--c-border) !important;
|
|
border-radius: 0 !important;
|
|
box-shadow: none !important;
|
|
font-size: 13px;
|
|
background: #fff;
|
|
z-index: 1;
|
|
}
|
|
.searchable-select__option {
|
|
padding: 7px 10px;
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
color: var(--c-text-strong);
|
|
}
|
|
.searchable-select__option:hover {
|
|
background: #f1f5f9;
|
|
}
|
|
.searchable-select__option.is-selected {
|
|
background: #edf2ff;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.flash {
|
|
padding: 10px 14px;
|
|
border-radius: 8px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
.flash--success {
|
|
background: #f0fdf4;
|
|
border: 1px solid #bbf7d0;
|
|
color: #166534;
|
|
}
|
|
.flash--error {
|
|
background: #fef2f2;
|
|
border: 1px solid #fecaca;
|
|
color: #b91c1c;
|
|
}
|
|
|
|
.content-tabs-card {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.content-tabs-nav {
|
|
display: flex;
|
|
gap: 4px;
|
|
border-bottom: 2px solid var(--c-border);
|
|
margin-bottom: 16px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.content-tab-btn {
|
|
padding: 8px 16px;
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--c-text-muted, #6b7280);
|
|
border-bottom: 2px solid transparent;
|
|
margin-bottom: -2px;
|
|
border-radius: 4px 4px 0 0;
|
|
transition: color 0.15s, border-color 0.15s;
|
|
}
|
|
.content-tab-btn:hover {
|
|
color: var(--c-text-strong, #111827);
|
|
}
|
|
.content-tab-btn.is-active {
|
|
color: var(--c-primary, #2563eb);
|
|
border-bottom-color: var(--c-primary, #2563eb);
|
|
}
|
|
|
|
.content-tab-panel {
|
|
display: none;
|
|
}
|
|
.content-tab-panel.is-active {
|
|
display: block;
|
|
}
|
|
|
|
.shoppro-tabs-toolbar {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
margin-bottom: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.shoppro-tabs-toolbar__field {
|
|
margin: 0;
|
|
min-width: 260px;
|
|
max-width: 420px;
|
|
flex: 1 1 320px;
|
|
}
|
|
|
|
.shoppro-tabs-toolbar__field .form-control {
|
|
width: 100%;
|
|
}
|
|
|
|
.shoppro-tabs-toolbar__actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.dm-carrier-select {
|
|
min-width: 140px;
|
|
}
|
|
|
|
.dm-service-wrap {
|
|
min-width: 200px;
|
|
}
|
|
.dm-service-wrap .dm-inpost-panel .form-control,
|
|
.dm-service-wrap .dm-apaczka-panel .form-control {
|
|
width: 100%;
|
|
}
|
|
|
|
.integration-settings-group {
|
|
grid-column: 1/-1;
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 10px;
|
|
background: #f8fbff;
|
|
padding: 10px;
|
|
}
|
|
|
|
.integration-settings-group__head {
|
|
margin-bottom: 8px;
|
|
padding: 4px 0;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.integration-settings-group__title {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.01em;
|
|
color: var(--c-text-strong, #1e293b);
|
|
}
|
|
|
|
.integration-settings-group__desc {
|
|
margin: 4px 0 0;
|
|
color: #4b5563;
|
|
}
|
|
|
|
.integration-settings-group__grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px 12px;
|
|
align-items: start;
|
|
}
|
|
|
|
.integration-settings-group__full {
|
|
grid-column: 1/-1;
|
|
}
|
|
|
|
.integration-settings-group__grid .form-field {
|
|
margin: 0;
|
|
align-self: start;
|
|
}
|
|
|
|
.integration-settings-group__grid .form-control {
|
|
min-height: 34px;
|
|
height: 34px;
|
|
}
|
|
|
|
.integration-settings-group__grid input[type=date].form-control {
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.integration-settings-checkboxes {
|
|
border: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.integration-settings-checkboxes .field-label {
|
|
display: block;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.integration-settings-checkboxes__list {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 6px 12px;
|
|
}
|
|
|
|
.integration-settings-checkboxes__item {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 13px;
|
|
color: #334155;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.app-shell {
|
|
flex-direction: column;
|
|
}
|
|
.sidebar {
|
|
width: 100% !important;
|
|
min-width: 0 !important;
|
|
border-right: 0;
|
|
border-bottom: 1px solid #243041;
|
|
padding: 14px;
|
|
overflow-x: auto;
|
|
}
|
|
.sidebar__brand {
|
|
margin: 0 0 10px;
|
|
font-size: 22px;
|
|
}
|
|
.sidebar__collapse-btn {
|
|
display: none;
|
|
}
|
|
.sidebar__nav {
|
|
display: flex;
|
|
gap: 8px;
|
|
overflow-x: auto;
|
|
}
|
|
.sidebar__link {
|
|
white-space: nowrap;
|
|
}
|
|
.topbar {
|
|
padding: 0 14px;
|
|
}
|
|
.container {
|
|
margin-top: 16px;
|
|
width: calc(100% - 16px);
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
padding: 0 3px 12px;
|
|
}
|
|
.settings-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.page-head {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
.orders-stats {
|
|
grid-template-columns: 1fr;
|
|
width: 100%;
|
|
}
|
|
.order-show-layout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.order-statuses-side {
|
|
position: static;
|
|
top: auto;
|
|
}
|
|
.order-details-actions {
|
|
justify-content: flex-start;
|
|
}
|
|
.order-grid-2,
|
|
.order-grid-3 {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.order-kv {
|
|
grid-template-columns: 1fr;
|
|
gap: 2px;
|
|
}
|
|
.filters-grid,
|
|
.form-grid,
|
|
.form-grid-2,
|
|
.form-grid-3,
|
|
.form-grid-4,
|
|
.shipment-grid,
|
|
.statuses-form,
|
|
.statuses-inline-form,
|
|
.table-list-filters,
|
|
.product-links-search-form,
|
|
.product-links-inline-form {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.statuses-dnd-item__content {
|
|
display: block;
|
|
}
|
|
.statuses-inline-delete {
|
|
margin-top: 6px;
|
|
}
|
|
.filters-actions {
|
|
align-items: center;
|
|
}
|
|
.table-list__header,
|
|
.table-list__footer {
|
|
align-items: flex-start;
|
|
}
|
|
.product-links-head {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.integration-settings-group__grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.integration-settings-checkboxes__list {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.card {
|
|
padding: 12px;
|
|
}
|
|
.modal--image-preview {
|
|
width: min(92vw, 100%);
|
|
}
|
|
}
|