urasoft-live-support 1.1.5 → 1.1.6
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/styles.css +17 -23
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -5,32 +5,32 @@
|
|
|
5
5
|
|
|
6
6
|
/* ==================== ROOT VARIABLES ==================== */
|
|
7
7
|
:root {
|
|
8
|
-
/* Gold/Amber Theme Colors */
|
|
9
|
-
--primary: #
|
|
10
|
-
--primary-light: #
|
|
11
|
-
--primary-dark: #
|
|
12
|
-
--secondary: #
|
|
8
|
+
/* Gold/Amber Theme Colors - LexPanel Matching */
|
|
9
|
+
--primary: #f59e0b;
|
|
10
|
+
--primary-light: #fbbf24;
|
|
11
|
+
--primary-dark: #d97706;
|
|
12
|
+
--secondary: #b45309;
|
|
13
13
|
--accent: #ffc847;
|
|
14
14
|
|
|
15
|
-
/* Dark Theme Surfaces */
|
|
16
|
-
--surface: #
|
|
17
|
-
--surface-hover: #
|
|
18
|
-
--surface-alt: #
|
|
19
|
-
--surface-elevated: #
|
|
20
|
-
--border: #
|
|
21
|
-
--border-light: #
|
|
15
|
+
/* Dark Theme Surfaces - LexPanel Slate */
|
|
16
|
+
--surface: #1e293b;
|
|
17
|
+
--surface-hover: #334155;
|
|
18
|
+
--surface-alt: #0f172a;
|
|
19
|
+
--surface-elevated: #334155;
|
|
20
|
+
--border: #334155;
|
|
21
|
+
--border-light: #475569;
|
|
22
22
|
|
|
23
23
|
/* Text Colors */
|
|
24
|
-
--text-primary: #
|
|
25
|
-
--text-secondary: #
|
|
26
|
-
--text-tertiary: #
|
|
27
|
-
--text-gold: #
|
|
24
|
+
--text-primary: #f8fafc;
|
|
25
|
+
--text-secondary: #94a3b8;
|
|
26
|
+
--text-tertiary: #64748b;
|
|
27
|
+
--text-gold: #fbbf24;
|
|
28
28
|
|
|
29
29
|
/* Status Colors */
|
|
30
30
|
--success: #10b981;
|
|
31
31
|
--warning: #f59e0b;
|
|
32
32
|
--error: #ef4444;
|
|
33
|
-
--online: #
|
|
33
|
+
--online: #10b981;
|
|
34
34
|
|
|
35
35
|
/* Shadows with gold glow */
|
|
36
36
|
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
@@ -375,9 +375,6 @@
|
|
|
375
375
|
border-radius: var(--radius-xl);
|
|
376
376
|
background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 50%);
|
|
377
377
|
}
|
|
378
|
-
|
|
379
|
-
/* Legacy indigo theme styles - kept for reference */
|
|
380
|
-
.chat-start-conversation-button {
|
|
381
378
|
gap: 12px;
|
|
382
379
|
transition: all var(--transition-base);
|
|
383
380
|
box-shadow:
|
|
@@ -816,9 +813,6 @@
|
|
|
816
813
|
cursor: not-allowed;
|
|
817
814
|
transform: none;
|
|
818
815
|
}
|
|
819
|
-
|
|
820
|
-
/* Legacy indigo theme styles - kept for reference */
|
|
821
|
-
.chat-action-buttons {
|
|
822
816
|
border: none;
|
|
823
817
|
font-size: clamp(1.125rem, 1.25rem * var(--chat-scale-factor), 1.5rem);
|
|
824
818
|
cursor: pointer;
|
package/package.json
CHANGED