Compare commits
1 Commits
eeead33b2c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 605a4488ac |
@ -300,6 +300,7 @@
|
|||||||
border-bottom-right-radius: 12px;
|
border-bottom-right-radius: 12px;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
z-index: 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Modal */
|
/* Modal */
|
||||||
@ -574,6 +575,12 @@
|
|||||||
.unlink-btn:hover {
|
.unlink-btn:hover {
|
||||||
background: #fee2e2;
|
background: #fee2e2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Ensure plan list items contain their absolute children */
|
||||||
|
#details-content li,
|
||||||
|
#match-modal-text li {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@ -735,7 +742,7 @@
|
|||||||
</p>
|
</p>
|
||||||
<button onclick="controller.generateSku()" class="btn btn-primary" style="width: auto;">Generate SKU</button>
|
<button onclick="controller.generateSku()" class="btn btn-primary" style="width: auto;">Generate SKU</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Define Product Prompt -->
|
<!-- Define Product Prompt -->
|
||||||
<div id="define-product-ui"
|
<div id="define-product-ui"
|
||||||
style="display:none; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding-top: 80px;">
|
style="display:none; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding-top: 80px;">
|
||||||
@ -744,9 +751,9 @@
|
|||||||
<p style="color: var(--text-secondary); max-width: 300px; margin-bottom: 24px; line-height: 1.5;">
|
<p style="color: var(--text-secondary); max-width: 300px; margin-bottom: 24px; line-height: 1.5;">
|
||||||
Please define <strong>Product Type</strong> and <strong>Style</strong> to generate a SKU.
|
Please define <strong>Product Type</strong> and <strong>Style</strong> to generate a SKU.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div style="display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 400px; text-align: left;">
|
<div style="display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 400px; text-align: left;">
|
||||||
|
|
||||||
<!-- Title -->
|
<!-- Title -->
|
||||||
<div>
|
<div>
|
||||||
<label
|
<label
|
||||||
@ -755,7 +762,7 @@
|
|||||||
<input id="input-product-title" type="text" placeholder="e.g. Vintage T-Shirt"
|
<input id="input-product-title" type="text" placeholder="e.g. Vintage T-Shirt"
|
||||||
style="width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: 4px; background: var(--bg-surface); color: var(--text); font-size: 14px;">
|
style="width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: 4px; background: var(--bg-surface); color: var(--text); font-size: 14px;">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Description -->
|
<!-- Description -->
|
||||||
<div>
|
<div>
|
||||||
<label
|
<label
|
||||||
@ -763,7 +770,7 @@
|
|||||||
<textarea id="input-product-desc" rows="3" placeholder="Product details..."
|
<textarea id="input-product-desc" rows="3" placeholder="Product details..."
|
||||||
style="width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: 4px; background: var(--bg-surface); color: var(--text); font-family: inherit; font-size: 14px; resize: vertical;"></textarea>
|
style="width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: 4px; background: var(--bg-surface); color: var(--text); font-family: inherit; font-size: 14px; resize: vertical;"></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="display: flex; gap: 16px;">
|
<div style="display: flex; gap: 16px;">
|
||||||
<!-- Type -->
|
<!-- Type -->
|
||||||
<div style="flex: 1;">
|
<div style="flex: 1;">
|
||||||
@ -786,7 +793,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="display: flex; gap: 12px; margin-top: 8px;">
|
<div style="display: flex; gap: 12px; margin-top: 8px;">
|
||||||
<button id="btn-save-def" onclick="controller.saveProductDefinition()" class="btn btn-primary"
|
<button id="btn-save-def" onclick="controller.saveProductDefinition()" class="btn btn-primary"
|
||||||
style="flex: 1;">Save & Generate SKU</button>
|
style="flex: 1;">Save & Generate SKU</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user