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,74 @@
// =============================================================================
// Fusion Plating - Compliance backend styles
// Copyright 2026 Nexa Systems Inc.
// License OPL-1 (Odoo Proprietary License v1.0)
//
// THEME AWARENESS: this file uses ONLY CSS custom properties for colour, so
// it adapts to light and dark mode without duplication. No hex codes.
// =============================================================================
// -----------------------------------------------------------------------------
// Local helpers - tint a semantic colour against the surface
// -----------------------------------------------------------------------------
@mixin fp-comp-tint($color-var, $amount: 12%) {
background-color: color-mix(in srgb, var(#{$color-var}) #{$amount}, transparent);
color: var(#{$color-var});
border: 1px solid color-mix(in srgb, var(#{$color-var}) 35%, transparent);
}
// -----------------------------------------------------------------------------
// Permit kanban card - state border
// -----------------------------------------------------------------------------
.o_fp_permit_card {
border-left-width: 4px;
&[data-state="draft"] {
border-left-color: var(--bs-secondary-color);
}
&[data-state="pending"] {
border-left-color: var(--bs-info, var(--o-action));
}
&[data-state="active"] {
border-left-color: var(--bs-success);
}
&[data-state="expired"],
&[data-state="revoked"] {
border-left-color: var(--bs-danger);
}
}
// -----------------------------------------------------------------------------
// Discharge sample kanban card - worst-result tinting
// -----------------------------------------------------------------------------
.o_fp_discharge_card {
border-left-width: 4px;
border-left-color: var(--bs-success);
&[data-status="warning"] {
border-left-color: var(--bs-warning);
}
&[data-status="out_of_spec"] {
border-left-color: var(--bs-danger);
}
&[data-status="pending"] {
border-left-color: var(--bs-secondary-color);
}
}
// -----------------------------------------------------------------------------
// Overdue indicator - small badge for kanban / list highlights
// -----------------------------------------------------------------------------
.o_fp_overdue_indicator {
@include fp-comp-tint(--bs-danger, 14%);
display: inline-block;
padding: 2px 8px;
font-size: 0.72rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.02em;
border-radius: 999px;
}