@rakeyshgidwani/roger-ui-bank-theme-stan-design 0.2.36 → 0.2.38
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/CHANGELOG.md +1 -1
- package/dist/styles.css +24431 -8
- package/package.json +1 -1
- package/src/styles/components/base/badge.css +4 -0
- package/src/styles/components/base/button.css +4 -0
- package/src/styles/components/base/card.css +4 -0
- package/src/styles/components/base/checkbox.css +4 -0
- package/src/styles/components/base/input.css +4 -0
- package/src/styles/components/base/label.css +4 -0
- package/src/styles/layers/index.css +12 -34
package/package.json
CHANGED
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
/* Base Badge Component - Using Original Poker Project Styling */
|
|
92
|
+
@layer components {
|
|
93
|
+
|
|
92
94
|
.badge {
|
|
93
95
|
/* Layout */
|
|
94
96
|
display: inline-flex;
|
|
@@ -426,3 +428,5 @@
|
|
|
426
428
|
grid-template-columns: 1fr 1fr !important;
|
|
427
429
|
}
|
|
428
430
|
}
|
|
431
|
+
|
|
432
|
+
} /* End @layer components */
|
|
@@ -133,6 +133,8 @@
|
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
/* Base Card Component */
|
|
136
|
+
@layer components {
|
|
137
|
+
|
|
136
138
|
.card {
|
|
137
139
|
/* Base Styles */
|
|
138
140
|
background-color: var(--card-background);
|
|
@@ -599,3 +601,5 @@
|
|
|
599
601
|
box-shadow: var(--card-shadow-base);
|
|
600
602
|
transform: none;
|
|
601
603
|
}
|
|
604
|
+
|
|
605
|
+
} /* End @layer components */
|
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
/* Checkbox Base Styles */
|
|
40
|
+
@layer components {
|
|
41
|
+
|
|
40
42
|
.checkbox {
|
|
41
43
|
position: relative;
|
|
42
44
|
display: inline-flex;
|
|
@@ -440,3 +442,5 @@
|
|
|
440
442
|
background-color: var(--cs-colors-semantic-info);
|
|
441
443
|
color: var(--cs-colors-text-on-primary);
|
|
442
444
|
}
|
|
445
|
+
|
|
446
|
+
} /* End @layer components */
|
|
@@ -164,6 +164,8 @@
|
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
/* Input Base Styles */
|
|
167
|
+
@layer components {
|
|
168
|
+
|
|
167
169
|
.input {
|
|
168
170
|
position: relative;
|
|
169
171
|
display: block;
|
|
@@ -885,3 +887,5 @@
|
|
|
885
887
|
border-width: var(--input-border-width-normal);
|
|
886
888
|
}
|
|
887
889
|
}
|
|
890
|
+
|
|
891
|
+
} /* End @layer components */
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
/* Base Label Styles */
|
|
59
|
+
@layer components {
|
|
60
|
+
|
|
59
61
|
.label {
|
|
60
62
|
display: inline-block;
|
|
61
63
|
font-family: var(--cs-fonts-primary-family), var(--cs-fonts-primary-fallbacks);
|
|
@@ -294,3 +296,5 @@
|
|
|
294
296
|
background: var(--cs-print-background-color);
|
|
295
297
|
}
|
|
296
298
|
}
|
|
299
|
+
|
|
300
|
+
} /* End @layer components */
|
|
@@ -12,40 +12,18 @@
|
|
|
12
12
|
|
|
13
13
|
@layer reset, base, themes, components, utilities, overrides;
|
|
14
14
|
|
|
15
|
-
/*
|
|
16
|
-
@
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
@
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
@layer themes {
|
|
28
|
-
@import '../themes/index.css';
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/* Components layer - all UI component styles */
|
|
32
|
-
@layer components {
|
|
33
|
-
@import '../components/base/index.css';
|
|
34
|
-
@import '../components/navigation/index.css';
|
|
35
|
-
@import '../components/data-display/index.css';
|
|
36
|
-
@import '../components/feedback/index.css';
|
|
37
|
-
@import '../components/overlay/index.css';
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/* Utilities layer - utility classes and system styles */
|
|
41
|
-
@layer utilities {
|
|
42
|
-
@import '../utilities/index.css';
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/* Overrides layer - highest priority application-specific overrides */
|
|
46
|
-
@layer overrides {
|
|
47
|
-
@import './overrides.css';
|
|
48
|
-
}
|
|
15
|
+
/* Modern CSS layers syntax - imports with layer assignment */
|
|
16
|
+
@import '../base/reset.css' layer(reset);
|
|
17
|
+
@import '../base/typography.css' layer(base);
|
|
18
|
+
@import '../base/variables.css' layer(base);
|
|
19
|
+
@import '../themes/index.css' layer(themes);
|
|
20
|
+
@import '../components/base/index.css' layer(components);
|
|
21
|
+
@import '../components/navigation/index.css' layer(components);
|
|
22
|
+
@import '../components/data-display/index.css' layer(components);
|
|
23
|
+
@import '../components/feedback/index.css' layer(components);
|
|
24
|
+
@import '../components/overlay/index.css' layer(components);
|
|
25
|
+
@import '../utilities/index.css' layer(utilities);
|
|
26
|
+
@import './overrides.css' layer(overrides);
|
|
49
27
|
|
|
50
28
|
/* Development validation tools (only in development) */
|
|
51
29
|
/* @import './validation.css'; */
|