refactor(ui): clean up redundant badges and text in Stage 2 (v0.1.8) #51
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "iccery",
|
"name": "iccery",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.1.7",
|
"version": "0.1.8",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"tauri": "tauri"
|
"tauri": "tauri"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "iccery"
|
name = "iccery"
|
||||||
version = "0.1.7"
|
version = "0.1.8"
|
||||||
description = "A Tauri App"
|
description = "A Tauri App"
|
||||||
authors = ["you"]
|
authors = ["you"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "ICCery",
|
"productName": "ICCery",
|
||||||
"version": "0.1.7",
|
"version": "0.1.8",
|
||||||
"identifier": "com.gronod.iccery",
|
"identifier": "com.gronod.iccery",
|
||||||
"build": {
|
"build": {
|
||||||
"frontendDist": "../src"
|
"frontendDist": "../src"
|
||||||
|
|||||||
+4
-20
@@ -156,22 +156,10 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>TIFF Output</label>
|
<label>Bit Depth</label>
|
||||||
<div class="input-row">
|
<div class="radio-group">
|
||||||
<div>
|
<label><input type="radio" name="bitDepth" value="8" checked> 8-bit</label>
|
||||||
<label class="sub-label">Bit Depth</label>
|
<label><input type="radio" name="bitDepth" value="16"> 16-bit</label>
|
||||||
<div class="radio-group">
|
|
||||||
<label><input type="radio" name="bitDepth" value="8" checked> 8-bit</label>
|
|
||||||
<label><input type="radio" name="bitDepth" value="16"> 16-bit</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<label class="sub-label">Automatic Fit Scaling</label>
|
|
||||||
<div class="auto-scaler-badge" title="Master 300 DPI high-resolution target is automatically scaled to fit the device printable area without distortion or clipping">
|
|
||||||
<span class="badge-icon">⚡</span>
|
|
||||||
<span>300 DPI Auto-Fit Scaler (Active)</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -197,11 +185,7 @@
|
|||||||
<span class="print-icon">🖨️</span>
|
<span class="print-icon">🖨️</span>
|
||||||
<h3>Direct Native Raw Printing</h3>
|
<h3>Direct Native Raw Printing</h3>
|
||||||
</div>
|
</div>
|
||||||
<span class="acpu-badge" title="Bypasses OS ICM / ColorSync & CUPS color management, replicating Adobe Color Print Utility">ACPU-Equivalent Mode</span>
|
|
||||||
</div>
|
</div>
|
||||||
<p class="print-panel-desc">
|
|
||||||
Send the generated profiling target directly to the printer nozzles with all OS and driver color management strictly bypassed.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<!-- Notification / Feedback Banner -->
|
<!-- Notification / Feedback Banner -->
|
||||||
<div id="printNotification" class="notification-banner hidden">
|
<div id="printNotification" class="notification-banner hidden">
|
||||||
|
|||||||
+1
-38
@@ -864,7 +864,7 @@ button.danger:hover {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.print-panel-title {
|
.print-panel-title {
|
||||||
@@ -879,25 +879,6 @@ button.danger:hover {
|
|||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.acpu-badge {
|
|
||||||
background: rgba(0, 122, 204, 0.15);
|
|
||||||
border: 1px solid rgba(0, 122, 204, 0.4);
|
|
||||||
color: #4fc3f7;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
font-weight: 600;
|
|
||||||
padding: 3px 8px;
|
|
||||||
border-radius: 12px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 0.5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.print-panel-desc {
|
|
||||||
margin: 0 0 16px 0;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
color: #aaa;
|
|
||||||
line-height: 1.4;
|
|
||||||
}
|
|
||||||
|
|
||||||
.printer-controls-row {
|
.printer-controls-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -924,24 +905,6 @@ button.danger:hover {
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.auto-scaler-badge {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 6px;
|
|
||||||
background: rgba(0, 122, 204, 0.12);
|
|
||||||
border: 1px solid rgba(0, 122, 204, 0.35);
|
|
||||||
color: #4fc3f7;
|
|
||||||
font-size: 0.8rem;
|
|
||||||
font-weight: 500;
|
|
||||||
padding: 6px 12px;
|
|
||||||
border-radius: 6px;
|
|
||||||
margin-top: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.auto-scaler-badge .badge-icon {
|
|
||||||
font-size: 0.9rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-properties {
|
.btn-properties {
|
||||||
background: rgba(255, 255, 255, 0.06);
|
background: rgba(255, 255, 255, 0.06);
|
||||||
border: 1px solid var(--border-color);
|
border: 1px solid var(--border-color);
|
||||||
|
|||||||
Reference in New Issue
Block a user