@nar-bus/lena-ui-shared 1.3.9 → 1.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +15 -5
- package/dist/index.js +2669 -2644
- package/dist/index.js.map +1 -1
- package/dist/theme.css +17 -0
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -138,6 +138,8 @@
|
|
|
138
138
|
--gradient-indigo: linear-gradient(to right, oklch(0.23 0.10 275), oklch(0.40 0.22 275), oklch(0.28 0.12 275));
|
|
139
139
|
/* Orange: #7c2d12 → #ea580c → #9a3412 */
|
|
140
140
|
--gradient-orange: linear-gradient(to right, oklch(0.30 0.12 45), oklch(0.58 0.20 45), oklch(0.37 0.14 45));
|
|
141
|
+
/* Navy Soft: lighter variant for table headers in detail tabs */
|
|
142
|
+
--gradient-navy-soft: linear-gradient(to right, oklch(0.25 0.06 262), oklch(0.35 0.12 264), oklch(0.28 0.06 256));
|
|
141
143
|
--gradient-navy-border: oklch(0.32 0.02 260); /* #334155 slate-700 */
|
|
142
144
|
--gradient-cherry-border: oklch(0.33 0.13 358); /* #781e3c */
|
|
143
145
|
--gradient-emerald-border: oklch(0.33 0.08 166); /* #064e3b emerald-900 */
|
|
@@ -344,6 +346,7 @@
|
|
|
344
346
|
--gradient-rose: linear-gradient(to right, oklch(0.25 0.10 345), oklch(0.44 0.18 345), oklch(0.30 0.12 345));
|
|
345
347
|
--gradient-indigo: linear-gradient(to right, oklch(0.19 0.08 275), oklch(0.34 0.18 275), oklch(0.24 0.10 275));
|
|
346
348
|
--gradient-orange: linear-gradient(to right, oklch(0.25 0.10 45), oklch(0.50 0.17 45), oklch(0.32 0.12 45));
|
|
349
|
+
--gradient-navy-soft: linear-gradient(to right, oklch(0.22 0.05 262), oklch(0.30 0.10 264), oklch(0.24 0.05 256));
|
|
347
350
|
--gradient-navy-border: oklch(0.28 0.02 260);
|
|
348
351
|
--gradient-cherry-border: oklch(0.28 0.10 358);
|
|
349
352
|
--gradient-emerald-border: oklch(0.28 0.07 166);
|
|
@@ -922,6 +925,20 @@
|
|
|
922
925
|
color: var(--table-header);
|
|
923
926
|
}
|
|
924
927
|
|
|
928
|
+
/* Custom header color (set via --table-header CSS variable on container) */
|
|
929
|
+
[style*="--table-header"] [data-slot="table-header"] {
|
|
930
|
+
background: var(--table-header);
|
|
931
|
+
}
|
|
932
|
+
[style*="--table-header"] [data-slot="table-header"] th {
|
|
933
|
+
color: var(--table-header-text, inherit);
|
|
934
|
+
}
|
|
935
|
+
[style*="--table-header"] [data-slot="table-header"] th button {
|
|
936
|
+
color: inherit;
|
|
937
|
+
}
|
|
938
|
+
[style*="--table-header"] [data-slot="table-header"] tr {
|
|
939
|
+
border-bottom: 0;
|
|
940
|
+
}
|
|
941
|
+
|
|
925
942
|
/* =============================================================================
|
|
926
943
|
TOOLBAR ENTITY LABEL
|
|
927
944
|
============================================================================= */
|