folder rename

This commit is contained in:
gsinghpal
2026-04-16 20:53:53 -04:00
parent 3f3ddcbab4
commit 7c7ef06057
634 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
// =============================================================================
// Fusion Plating — E-Sign Bridge (EE)
// Copyright 2026 Nexa Systems Inc.
// License OPL-1 (Odoo Proprietary License v1.0)
//
// Theme-aware: uses Bootstrap/Odoo CSS custom properties so light and dark
// modes both render correctly without duplication. No hex codes, no
// prefers-color-scheme overrides.
// =============================================================================
.o_fp_signed_badge {
// Only when the signature is complete does the badge tint green.
&[data-value="signed"],
&[data-value="done"] {
background-color: color-mix(in srgb, var(--bs-success) 12%, transparent);
color: var(--bs-success);
border: 1px solid color-mix(in srgb, var(--bs-success) 35%, transparent);
}
// In-progress (sent to signer) — amber tint.
&[data-value="sent"],
&[data-value="shared"] {
background-color: color-mix(in srgb, var(--bs-warning) 12%, transparent);
color: var(--bs-warning);
border: 1px solid color-mix(in srgb, var(--bs-warning) 35%, transparent);
}
// Cancelled / expired — grey tint from the secondary token.
&[data-value="canceled"],
&[data-value="expired"] {
background-color: color-mix(in srgb, var(--bs-secondary-color) 12%, transparent);
color: var(--bs-secondary-color);
border: 1px solid color-mix(in srgb, var(--bs-secondary-color) 35%, transparent);
}
}
.o_fp_pending_signature {
background-color: color-mix(in srgb, var(--bs-warning) 10%, transparent);
color: var(--bs-warning);
border-left: 3px solid var(--bs-warning);
padding: 8px 12px;
border-radius: 6px;
}