update
This commit is contained in:
6
.claude/agent_credentials.md
Normal file
6
.claude/agent_credentials.md
Normal file
@@ -0,0 +1,6 @@
|
||||
## Konto techniczne Claude Agent
|
||||
|
||||
- URL: https://orderpro.projectpro.pl/login
|
||||
- Email: agent@orderpro.local
|
||||
- Haslo: ClaudeAgent2026!
|
||||
- User ID: 2
|
||||
BIN
.claude/screenshots/screenshot_after_login.png
Normal file
BIN
.claude/screenshots/screenshot_after_login.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 60 KiB |
BIN
.claude/screenshots/screenshot_inpost.png
Normal file
BIN
.claude/screenshots/screenshot_inpost.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 86 KiB |
BIN
.claude/screenshots/screenshot_inpost_v2.png
Normal file
BIN
.claude/screenshots/screenshot_inpost_v2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 87 KiB |
BIN
.claude/screenshots/screenshot_section_titles.png
Normal file
BIN
.claude/screenshots/screenshot_section_titles.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 57 KiB |
BIN
.claude/screenshots/screenshot_titles_v2.png
Normal file
BIN
.claude/screenshots/screenshot_titles_v2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 57 KiB |
19
.mcp.json
Normal file
19
.mcp.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"serena": {
|
||||
"type": "stdio",
|
||||
"command": "C:\\Users\\jacek\\.local\\bin\\uvx.exe",
|
||||
"args": [
|
||||
"--from",
|
||||
"git+https://github.com/oraios/serena",
|
||||
"serena",
|
||||
"start-mcp-server",
|
||||
"--context",
|
||||
"claude-code",
|
||||
"--project",
|
||||
"C:/visual studio code/projekty/orderPRO"
|
||||
],
|
||||
"env": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -112,7 +112,7 @@ PLAN ──▶ APPLY ──▶ UNIFY
|
||||
- **Delivery mapping "Szukaj..." layout** — JS `attachSelectFilter()` w allegro.php tworzy input search dla InPost/Apaczka selectów, wizualnie wygląda jakby należał do wiersza powyżej. Pre-existing bug, do naprawy osobno.
|
||||
|
||||
### Git State
|
||||
Last commit: fbb3020 (docs: close loop 06-05 — UNIFY complete)
|
||||
Last commit: 5ab87a5 (feat(07-pre-expansion-fixes): complete phase 07 — milestone v0.2 done)
|
||||
Branch: main
|
||||
Feature branches merged: none
|
||||
|
||||
|
||||
@@ -124,3 +124,12 @@ initial_prompt: ""
|
||||
# This overrides the corresponding setting in the global configuration; see the documentation there.
|
||||
# If null or missing, use the setting from the global configuration.
|
||||
symbol_info_budget:
|
||||
|
||||
# line ending convention to use when writing source files.
|
||||
# Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default)
|
||||
# This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings.
|
||||
line_ending:
|
||||
|
||||
# list of regex patterns which, when matched, mark a memory entry as read‑only.
|
||||
# Extends the list from the global configuration, merging the two lists.
|
||||
read_only_memory_patterns: []
|
||||
|
||||
File diff suppressed because one or more lines are too long
117
resources/modules/jquery-alerts/jquery-alerts.css
Normal file
117
resources/modules/jquery-alerts/jquery-alerts.css
Normal file
@@ -0,0 +1,117 @@
|
||||
.jq-alert-host {
|
||||
position: fixed;
|
||||
top: 16px;
|
||||
right: 16px;
|
||||
z-index: 300;
|
||||
width: min(420px, 100vw - 32px);
|
||||
}
|
||||
|
||||
.jq-alert {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
margin-top: 12px;
|
||||
padding: 12px 14px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
opacity: 0;
|
||||
transform: translateY(4px);
|
||||
transition: opacity 0.18s ease, transform 0.18s ease;
|
||||
}
|
||||
|
||||
.jq-alert.is-visible {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.jq-alert--info {
|
||||
color: #1e3a8a;
|
||||
background: #eff6ff;
|
||||
border-color: #bfdbfe;
|
||||
}
|
||||
|
||||
.jq-alert--success {
|
||||
color: #065f46;
|
||||
background: #ecfdf5;
|
||||
border-color: #a7f3d0;
|
||||
}
|
||||
|
||||
.jq-alert--warning {
|
||||
color: #92400e;
|
||||
background: #fffbeb;
|
||||
border-color: #fde68a;
|
||||
}
|
||||
|
||||
.jq-alert--error {
|
||||
color: #991b1b;
|
||||
background: #fef2f2;
|
||||
border-color: #fecaca;
|
||||
}
|
||||
|
||||
.jq-alert__content {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.jq-alert__close {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
line-height: 1;
|
||||
font-size: 18px;
|
||||
cursor: pointer;
|
||||
color: inherit;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.jq-alert-modal-backdrop {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 310;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 16px;
|
||||
background: rgba(15, 23, 42, 0.5);
|
||||
opacity: 0;
|
||||
transition: opacity 0.18s ease;
|
||||
}
|
||||
|
||||
.jq-alert-modal-backdrop.is-visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.jq-alert-modal {
|
||||
width: min(520px, 100%);
|
||||
border-radius: 10px;
|
||||
border: 1px solid #dbe3ee;
|
||||
background: #ffffff;
|
||||
box-shadow: 0 18px 42px rgba(15, 23, 42, 0.3);
|
||||
}
|
||||
|
||||
.jq-alert-modal__header {
|
||||
padding: 14px 16px;
|
||||
border-bottom: 1px solid #e2e8f0;
|
||||
}
|
||||
|
||||
.jq-alert-modal__header h3 {
|
||||
margin: 0;
|
||||
color: #2d3748;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.jq-alert-modal__body {
|
||||
padding: 14px 16px;
|
||||
color: #4e5e6a;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.jq-alert-modal__footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 8px;
|
||||
padding: 0 16px 14px;
|
||||
}/*# sourceMappingURL=jquery-alerts.css.map */
|
||||
1
resources/modules/jquery-alerts/jquery-alerts.css.map
Normal file
1
resources/modules/jquery-alerts/jquery-alerts.css.map
Normal file
File diff suppressed because one or more lines are too long
2465
resources/scss/app.css
Normal file
2465
resources/scss/app.css
Normal file
File diff suppressed because it is too large
Load Diff
1
resources/scss/app.css.map
Normal file
1
resources/scss/app.css.map
Normal file
File diff suppressed because one or more lines are too long
@@ -296,6 +296,10 @@ details[open] > .sidebar__group-toggle .sidebar__toggle-arrow {
|
||||
max-width: 460px;
|
||||
}
|
||||
|
||||
.form-field {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
margin: 0;
|
||||
color: var(--c-text-strong);
|
||||
@@ -308,14 +312,27 @@ h3.section-title,
|
||||
h4.section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-weight: 400;
|
||||
padding: 5px 10px;
|
||||
border-left: 3px solid var(--c-primary);
|
||||
border-radius: 7px;
|
||||
background: linear-gradient(180deg, #f4f8ff 0%, #edf3ff 100%);
|
||||
color: #1e3a8a;
|
||||
box-shadow: inset 0 0 0 1px #dbe7fb;
|
||||
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 {
|
||||
@@ -2083,18 +2100,16 @@ h4.section-title {
|
||||
|
||||
.integration-settings-group__head {
|
||||
margin-bottom: 8px;
|
||||
padding: 4px 8px;
|
||||
border-left: 3px solid var(--c-primary, #2563eb);
|
||||
background: #eef4ff;
|
||||
border-radius: 6px;
|
||||
padding: 4px 0;
|
||||
border-bottom: 1px solid #e2e8f0;
|
||||
}
|
||||
|
||||
.integration-settings-group__title {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.01em;
|
||||
color: #1e3a8a;
|
||||
color: var(--c-text-strong, #1e293b);
|
||||
}
|
||||
|
||||
.integration-settings-group__desc {
|
||||
|
||||
402
resources/scss/login.css
Normal file
402
resources/scss/login.css
Normal file
@@ -0,0 +1,402 @@
|
||||
: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;
|
||||
}
|
||||
|
||||
:root {
|
||||
--shadow-card: 0 20px 50px rgba(22, 34, 58, 0.14);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: "Roboto", "Segoe UI", sans-serif;
|
||||
color: var(--c-text);
|
||||
background: var(--c-bg);
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.bg-orb {
|
||||
position: fixed;
|
||||
width: 460px;
|
||||
height: 460px;
|
||||
border-radius: 999px;
|
||||
filter: blur(28px);
|
||||
z-index: 0;
|
||||
opacity: 0.45;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.bg-orb-left {
|
||||
top: -200px;
|
||||
left: -180px;
|
||||
background: radial-gradient(circle, rgba(102, 144, 244, 0.48) 0%, rgba(102, 144, 244, 0) 70%);
|
||||
}
|
||||
|
||||
.bg-orb-right {
|
||||
right: -200px;
|
||||
bottom: -220px;
|
||||
background: radial-gradient(circle, rgba(30, 42, 58, 0.36) 0%, rgba(30, 42, 58, 0) 70%);
|
||||
}
|
||||
|
||||
.login-page {
|
||||
min-height: 100vh;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 32px 20px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.login-card {
|
||||
width: 100%;
|
||||
max-width: 430px;
|
||||
background: var(--c-surface);
|
||||
border: 1px solid var(--c-border);
|
||||
border-radius: 12px;
|
||||
box-shadow: var(--shadow-card);
|
||||
padding: 34px 30px 28px;
|
||||
animation: card-enter 420ms ease-out;
|
||||
}
|
||||
|
||||
.login-header {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.login-badge {
|
||||
display: inline-block;
|
||||
margin: 0 0 14px;
|
||||
padding: 5px 12px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid #d9e2ff;
|
||||
background: #eef2ff;
|
||||
color: #3f5faf;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
color: var(--c-text-strong);
|
||||
font-size: clamp(1.6rem, 2.5vw, 1.9rem);
|
||||
line-height: 1.15;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.login-subtitle {
|
||||
margin: 10px 0 0;
|
||||
font-size: 15px;
|
||||
line-height: 1.55;
|
||||
color: var(--c-muted);
|
||||
}
|
||||
|
||||
.login-alert {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.login-alert-placeholder {
|
||||
opacity: 0.56;
|
||||
}
|
||||
|
||||
.login-form {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.form-field {
|
||||
display: grid;
|
||||
gap: 7px;
|
||||
}
|
||||
|
||||
.field-label {
|
||||
color: var(--c-text-strong);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.login-form .form-control {
|
||||
min-height: 46px;
|
||||
padding: 0 14px;
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
.login-form .form-control::-moz-placeholder {
|
||||
color: #cbd5e0;
|
||||
}
|
||||
|
||||
.login-form .form-control::placeholder {
|
||||
color: #cbd5e0;
|
||||
}
|
||||
|
||||
.login-submit {
|
||||
margin-top: 2px;
|
||||
font-size: 15px;
|
||||
min-height: 48px;
|
||||
}
|
||||
|
||||
@keyframes card-enter {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(10px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.login-page {
|
||||
padding: 18px 14px;
|
||||
}
|
||||
.login-card {
|
||||
padding: 24px 20px 20px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.55rem;
|
||||
}
|
||||
}/*# sourceMappingURL=login.css.map */
|
||||
1
resources/scss/login.css.map
Normal file
1
resources/scss/login.css.map
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user