Files
orderPRO/resources/scss/app.scss
Jacek Pyziak f2f1c44324 feat(v1.6): inline status change on orders list
Phase 44 complete:
- Clickable status badge opens dropdown with grouped statuses
- AJAX POST changes status without page reload (optimistic update)
- Fixed-position dropdown escapes table overflow:hidden
- updateStatus() returns JSON for AJAX, redirect for standard POST

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 09:40:06 +01:00

2541 lines
40 KiB
SCSS

@use "shared/ui-components";
@use "modules/email-send";
@use "modules/automation";
@use "modules/printing";
@use "modules/shipment-presets";
@use "modules/delivery-status";
@use "modules/delivery-status-mappings";
* {
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;
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;
&: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 {
display: flex;
align-items: center;
gap: 9px;
white-space: nowrap;
border-radius: 8px;
padding: 9px 10px;
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;
&::before {
content: '';
flex-shrink: 0;
width: 5px;
height: 5px;
border-radius: 50%;
background: rgba(148, 163, 184, 0.3);
transition: background 0.15s;
}
&:hover {
color: #e2e8f0;
background: #1b2a3f;
&::before {
background: rgba(148, 163, 184, 0.65);
}
}
&.is-active {
color: #ffffff;
background: rgba(46, 79, 147, 0.55);
&::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);
&::before {
content: '\25A0';
font-size: 0.55em;
opacity: 0.5;
}
}
h3.section-title,
h4.section-title {
font-size: 15px;
&::before {
content: '\25C6';
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: center;
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;
align-items: start;
}
.form-grid-3 {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
align-items: start;
}
.form-grid-4 {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 12px;
align-items: start;
}
.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));
align-items: end;
}
.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;
}
.table-list {
border: 1px solid #dde5f2;
border-radius: 12px;
box-shadow: 0 6px 16px rgba(20, 44, 86, 0.08);
}
.table-list__header {
padding: 10px 6px 2px;
}
.table-list-filters {
padding: 6px 6px 2px;
border-top: 1px solid #ebf0f7;
border-bottom: 1px solid #ebf0f7;
background: #f9fbff;
}
.table-wrap {
border-radius: 10px;
overflow: hidden;
border: 1px solid #e7edf6;
}
.table thead th {
background: #f3f7fd;
color: #30435f;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.table tbody td {
vertical-align: middle;
padding-top: 10px;
padding-bottom: 10px;
border-bottom-color: #edf2f8;
}
.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;
&__label {
display: block;
color: #5f6f83;
font-size: 11px;
margin-bottom: 2px;
}
&__value {
color: #12233a;
font-size: 16px;
font-weight: 700;
}
}
.orders-ref {
display: grid;
gap: 2px;
min-width: 170px;
&__main {
font-weight: 700;
color: #0f1f35;
font-size: 14px;
}
&__meta {
display: inline-flex;
flex-wrap: wrap;
gap: 4px 10px;
color: #64748b;
font-size: 12px;
}
}
.orders-buyer {
display: grid;
gap: 2px;
&__name {
color: #0f172a;
font-weight: 600;
font-size: 14px;
}
&__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;
cursor: pointer;
.order-tag {
cursor: pointer;
}
}
.orders-status-dropdown {
position: fixed;
z-index: 9999;
min-width: 180px;
max-height: 280px;
overflow-y: auto;
background: #fff;
border: 1px solid #d8e1ef;
border-radius: 6px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
padding: 4px 0;
&__group-header {
padding: 6px 12px 2px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #94a3b8;
&:not(:first-child) {
border-top: 1px solid #f1f5f9;
margin-top: 2px;
padding-top: 8px;
}
}
&__item {
display: flex;
align-items: center;
gap: 8px;
padding: 5px 12px;
font-size: 13px;
color: #334155;
cursor: pointer;
white-space: nowrap;
&:hover {
background: #f1f5f9;
}
&.is-current {
font-weight: 700;
background: #f8fafc;
}
}
&__color-dot {
width: 10px;
height: 10px;
border-radius: 50%;
flex-shrink: 0;
}
}
.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;
&.is-info {
border-color: #bfdbfe;
background: #eff6ff;
color: #1d4ed8;
}
&.is-success {
border-color: #bbf7d0;
background: #f0fdf4;
color: #166534;
}
&.is-danger {
border-color: #fecaca;
background: #fef2f2;
color: #b91c1c;
}
&.is-warn {
border-color: #fde68a;
background: #fffbeb;
color: #92400e;
}
&.is-cod {
border-color: #f9a8d4;
background: #fdf2f8;
color: #9d174d;
}
&.is-unpaid {
border-color: #fca5a5;
background: #fef2f2;
color: #b91c1c;
}
}
.orders-mini {
font-size: 14px;
color: #223247;
line-height: 1.25;
&__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;
&__meta,
&__more {
font-size: 12px;
color: #64748b;
}
}
.orders-product {
display: grid;
grid-template-columns: 48px 1fr;
gap: 6px;
align-items: center;
&__thumb {
width: 48px;
height: 48px;
border-radius: 4px;
border: 1px solid #dbe3ef;
object-fit: cover;
background: #fff;
}
&__thumb--empty {
display: inline-block;
background: #eef2f7;
border-style: dashed;
}
&__txt {
min-width: 0;
display: grid;
gap: 1px;
}
&__name {
font-size: 14px;
color: #0f172a;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
&__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;
&--status_change { background: #dbeafe; color: #1e40af; }
&--payment { background: #dcfce7; color: #166534; }
&--invoice { background: #fef3c7; color: #92400e; }
&--shipment { background: #e0e7ff; color: #3730a3; }
&--message { background: #f3e8ff; color: #6b21a8; }
&--document { background: #fce7f3; color: #9d174d; }
&--import { background: #f1f5f9; color: #475569; }
&--note { background: #ecfdf5; color: #065f46; }
}
.text-nowrap {
white-space: nowrap;
}
.orders-money {
display: grid;
gap: 2px;
&__main {
color: #0f172a;
font-weight: 700;
font-size: 14px;
}
&__meta {
color: #64748b;
font-size: 12px;
}
}
.table-list[data-table-list-id="orders"] {
gap: 8px;
.table-list__header {
padding: 2px 0 0;
}
.table-list-filters {
gap: 8px;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.table th,
.table td {
padding: 6px 8px;
}
.table thead th {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.02em;
white-space: nowrap;
}
.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;
&__title {
font-size: 13px;
font-weight: 700;
color: #0f172a;
margin-bottom: 8px;
}
}
.order-status-group {
margin-bottom: 10px;
&__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;
&__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;
}
.manual-tracking-form {
display: flex;
gap: 8px;
align-items: center;
.form-control {
max-width: 220px;
}
}
.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;
&.is-info {
border-color: #bfdbfe;
background: #eff6ff;
color: #1d4ed8;
}
&.is-success {
border-color: #bbf7d0;
background: #f0fdf4;
color: #166534;
}
&.is-danger {
border-color: #fecaca;
background: #fef2f2;
color: #b91c1c;
}
&.is-warn {
border-color: #fde68a;
background: #fffbeb;
color: #92400e;
}
&.is-empty {
color: #94a3b8;
}
}
.order-buyer {
display: grid;
gap: 2px;
&__name {
color: #0f172a;
font-weight: 600;
}
&__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;
&__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;
summary {
cursor: pointer;
color: var(--c-muted, #888);
list-style: none;
user-select: none;
white-space: nowrap;
&::-webkit-details-marker {
display: none;
}
&::after {
content: '';
}
}
&[open] summary::after {
content: '';
}
&__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;
&__trigger {
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
user-select: none;
min-height: 34px;
&::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;
}
&--placeholder {
color: var(--c-text-muted, #6b7280);
}
}
&__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);
&.is-open {
display: block;
}
}
&__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;
}
&__option {
padding: 7px 10px;
font-size: 13px;
cursor: pointer;
color: var(--c-text-strong);
&:hover {
background: #f1f5f9;
}
&.is-selected {
background: #edf2ff;
font-weight: 600;
}
}
}
.flash {
padding: 10px 14px;
border-radius: 8px;
font-size: 13px;
font-weight: 500;
&--success {
background: #f0fdf4;
border: 1px solid #bbf7d0;
color: #166534;
}
&--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;
&:hover {
color: var(--c-text-strong, #111827);
}
&.is-active {
color: var(--c-primary, #2563eb);
border-bottom-color: var(--c-primary, #2563eb);
}
}
.content-tab-panel {
display: none;
&.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-inpost-panel,
.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%);
}
.email-tpl-editor-wrap {
flex-direction: column;
}
.email-tpl-var-panel {
min-width: 200px;
}
.modal-box {
width: 95vw;
max-height: 90vh;
}
}
// Email template editor
.email-tpl-editor-wrap {
display: flex;
flex-direction: column;
border: 1px solid var(--c-border);
border-radius: 6px;
overflow: hidden;
}
.email-tpl-toolbar {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 8px;
background: var(--c-bg-subtle, #f8f9fa);
border-bottom: 1px solid var(--c-border);
}
.email-tpl-var-dropdown {
position: relative;
}
.email-tpl-var-panel {
position: absolute;
top: 100%;
left: 0;
z-index: 50;
min-width: 260px;
max-height: 320px;
overflow-y: auto;
background: var(--c-bg);
border: 1px solid var(--c-border);
border-radius: 6px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
padding: 6px;
margin-top: 4px;
}
.email-var-group {
&:not(:first-child) {
margin-top: 6px;
padding-top: 6px;
border-top: 1px solid var(--c-border);
}
&__label {
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
color: var(--c-text-muted);
padding: 2px 4px;
letter-spacing: 0.03em;
}
}
.email-var-item {
display: block;
width: 100%;
text-align: left;
padding: 3px 6px;
margin: 1px 0;
border: none;
background: none;
font-size: 12px;
font-family: "Roboto Mono", monospace;
color: var(--c-text);
border-radius: 3px;
cursor: pointer;
&:hover {
background: var(--c-primary);
color: #fff;
}
}
#js-quill-editor {
min-height: 200px;
.ql-editor {
min-height: 200px;
font-size: 13px;
}
}
// Modal overlay (reusable)
.modal-overlay {
position: fixed;
inset: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.45);
}
.modal-box {
width: min(680px, 90vw);
max-height: 80vh;
background: var(--c-bg);
border-radius: 8px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
overflow: hidden;
&__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 16px;
border-bottom: 1px solid var(--c-border);
}
&__title {
margin: 0;
font-size: 15px;
font-weight: 600;
}
&__close {
background: none;
border: none;
font-size: 22px;
line-height: 1;
cursor: pointer;
color: var(--c-text-muted);
padding: 0 4px;
&:hover {
color: var(--c-text);
}
}
&__body {
padding: 12px 16px;
overflow-y: auto;
flex: 1;
}
}