@bcc-code/component-library-vue 0.0.0-dev.0ebcb8d → 0.0.0-dev.0fb2ad3
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/component-library.js +46322 -43368
- package/dist/component-library.umd.cjs +1301 -1105
- package/dist/index.css +1 -1
- package/dist/theme.css +881 -456
- package/dist-types/components/custom/BccAppNavigation/BccAppNavigation.vue.d.ts +32 -0
- package/dist-types/components/custom/BccBadge/BccBadge.vue.d.ts +2 -0
- package/dist-types/components/custom/BccCapacityIndicator/BccCapacityIndicator.vue.d.ts +3 -0
- package/dist-types/components/custom/BccCircleLoader/BccCircleLoader.vue.d.ts +9 -1
- package/dist-types/components/custom/BccDialKnob/BccDialKnob.vue.d.ts +1 -1
- package/dist-types/components/custom/BccGraphic/BccGraphic.vue.d.ts +2 -0
- package/dist-types/components/custom/BccNpsResult/BccNpsResult.vue.d.ts +2 -2
- package/dist-types/components/custom/BccReact/BccReact.vue.d.ts +3 -2
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +8 -8
- package/dist-types/components/custom/BccTag/BccTag.vue.d.ts +1 -0
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +57 -0
- package/dist-types/components/custom/index.d.ts +4 -0
- package/dist-types/components/wrapped/BccAvatar/BccAvatar.vue.d.ts +1 -1
- package/dist-types/components/wrapped/BccButton.vue.d.ts +1 -0
- package/dist-types/components/wrapped/BccImage.vue.d.ts +17 -0
- package/dist-types/components/wrapped/BccMenu/BccMenu.vue.d.ts +28 -0
- package/dist-types/components/wrapped/BccMessage.vue.d.ts +4 -2
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +20 -0
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +20 -0
- package/dist-types/components/wrapped/BccTabs/BccTabs.vue.d.ts +2 -0
- package/dist-types/components/wrapped/BccToggle/BccToggle.vue.d.ts +12 -1
- package/dist-types/components/wrapped/index.d.ts +9 -0
- package/dist-types/index.d.ts +14 -7
- package/package.json +11 -6
package/dist/theme.css
CHANGED
|
@@ -1,99 +1,225 @@
|
|
|
1
1
|
/* Layer order: Tailwind base/utilities first, then PrimeVue so component styles win */
|
|
2
2
|
@layer theme, base, tailwind, primevue;
|
|
3
|
-
@import
|
|
3
|
+
@import '@bcc-code/design-tokens/css';
|
|
4
4
|
|
|
5
|
-
@import
|
|
6
|
-
@import
|
|
7
|
-
@import "@bcc-code/design-tokens/primevue/overrides";
|
|
5
|
+
@import 'tailwindcss';
|
|
6
|
+
@import '@bcc-code/design-tokens/tailwind';
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
/* === ./styles/theme.css === */
|
|
11
10
|
@theme {
|
|
11
|
+
/* spacing variables */
|
|
12
|
+
--spacing-inset-top: env(safe-area-inset-top, var(--safe-area-inset-top, 0px));
|
|
13
|
+
--spacing-inset-top-1: max(0.25rem, env(safe-area-inset-top, var(--safe-area-inset-top, 0px)));
|
|
14
|
+
--spacing-inset-top-2: max(0.5rem, env(safe-area-inset-top, var(--safe-area-inset-top, 0px)));
|
|
15
|
+
--spacing-inset-top-4: max(1rem, env(safe-area-inset-top, var(--safe-area-inset-top, 0px)));
|
|
16
|
+
--spacing-inset-bottom: env(safe-area-inset-bottom, var(--safe-area-inset-bottom, 0px));
|
|
17
|
+
--spacing-inset-bottom-1: max(0.25rem, env(safe-area-inset-bottom, var(--safe-area-inset-bottom, 0px)));
|
|
18
|
+
--spacing-inset-bottom-2: max(0.5rem, env(safe-area-inset-bottom, var(--safe-area-inset-bottom, 0px)));
|
|
19
|
+
--spacing-inset-bottom-4: max(1rem, env(safe-area-inset-bottom, var(--safe-area-inset-bottom, 0px)));
|
|
20
|
+
--spacing-inset-left: env(safe-area-inset-left, var(--safe-area-inset-left, 0px));
|
|
21
|
+
--spacing-inset-right: env(safe-area-inset-right, var(--safe-area-inset-right, 0px));
|
|
22
|
+
|
|
23
|
+
--spacing-18: 4.5rem;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.ctx-default {
|
|
27
|
+
@apply ctx-default;
|
|
28
|
+
}
|
|
29
|
+
.ctx-success {
|
|
30
|
+
@apply ctx-success-subtlest;
|
|
31
|
+
}
|
|
32
|
+
.ctx-danger {
|
|
33
|
+
@apply ctx-danger-subtlest;
|
|
34
|
+
}
|
|
35
|
+
.ctx-warning {
|
|
36
|
+
@apply ctx-warning-subtlest;
|
|
37
|
+
}
|
|
38
|
+
.ctx-info {
|
|
39
|
+
@apply ctx-info-subtlest;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ctx-blue-bolder {
|
|
43
|
+
@apply ctx-blue-bolder;
|
|
44
|
+
}
|
|
45
|
+
.ctx-blue-subtle {
|
|
46
|
+
@apply ctx-blue-subtle;
|
|
47
|
+
}
|
|
48
|
+
.ctx-blue-subtler {
|
|
49
|
+
@apply ctx-blue-subtler;
|
|
50
|
+
}
|
|
51
|
+
.ctx-blue-subtlest {
|
|
52
|
+
@apply ctx-blue-subtlest;
|
|
53
|
+
}
|
|
54
|
+
.ctx-brand-boldest {
|
|
55
|
+
@apply ctx-brand-boldest;
|
|
56
|
+
}
|
|
57
|
+
.ctx-brand-bolder {
|
|
58
|
+
@apply ctx-brand-bolder;
|
|
59
|
+
}
|
|
60
|
+
.ctx-brand-bold {
|
|
61
|
+
@apply ctx-brand-bold;
|
|
62
|
+
}
|
|
63
|
+
.ctx-brand-subtle {
|
|
64
|
+
@apply ctx-brand-subtle;
|
|
65
|
+
}
|
|
66
|
+
.ctx-brand-subtler {
|
|
67
|
+
@apply ctx-brand-subtler;
|
|
68
|
+
}
|
|
69
|
+
.ctx-brand-subtlest {
|
|
70
|
+
@apply ctx-brand-subtlest;
|
|
71
|
+
}
|
|
72
|
+
.ctx-brown-bolder {
|
|
73
|
+
@apply ctx-brown-bolder;
|
|
74
|
+
}
|
|
75
|
+
.ctx-brown-subtle {
|
|
76
|
+
@apply ctx-brown-subtle;
|
|
77
|
+
}
|
|
78
|
+
.ctx-brown-subtler {
|
|
79
|
+
@apply ctx-brown-subtler;
|
|
80
|
+
}
|
|
81
|
+
.ctx-brown-subtlest {
|
|
82
|
+
@apply ctx-brown-subtlest;
|
|
83
|
+
}
|
|
84
|
+
.ctx-danger-subtlest {
|
|
85
|
+
@apply ctx-danger;
|
|
86
|
+
}
|
|
87
|
+
.ctx-danger-bolder {
|
|
88
|
+
@apply ctx-danger-bolder;
|
|
89
|
+
}
|
|
90
|
+
.ctx-gray-bolder {
|
|
91
|
+
@apply ctx-gray-bolder;
|
|
92
|
+
}
|
|
93
|
+
.ctx-gray-subtle {
|
|
94
|
+
@apply ctx-gray-subtle;
|
|
95
|
+
}
|
|
96
|
+
.ctx-gray-subtler {
|
|
97
|
+
@apply ctx-gray-subtler;
|
|
98
|
+
}
|
|
99
|
+
.ctx-gray-subtlest {
|
|
100
|
+
@apply ctx-gray-subtlest;
|
|
101
|
+
}
|
|
102
|
+
.ctx-green-bolder {
|
|
103
|
+
@apply ctx-green-bolder;
|
|
104
|
+
}
|
|
105
|
+
.ctx-green-subtle {
|
|
106
|
+
@apply ctx-green-subtle;
|
|
107
|
+
}
|
|
108
|
+
.ctx-green-subtler {
|
|
109
|
+
@apply ctx-green-subtler;
|
|
110
|
+
}
|
|
111
|
+
.ctx-green-subtlest {
|
|
112
|
+
@apply ctx-green-subtlest;
|
|
113
|
+
}
|
|
114
|
+
.ctx-info-subtlest {
|
|
115
|
+
@apply ctx-info;
|
|
116
|
+
}
|
|
117
|
+
.ctx-info-bolder {
|
|
118
|
+
@apply ctx-info-bolder;
|
|
119
|
+
}
|
|
120
|
+
.ctx-magenta-bolder {
|
|
121
|
+
@apply ctx-magenta-bolder;
|
|
122
|
+
}
|
|
123
|
+
.ctx-magenta-subtle {
|
|
124
|
+
@apply ctx-magenta-subtle;
|
|
125
|
+
}
|
|
126
|
+
.ctx-magenta-subtler {
|
|
127
|
+
@apply ctx-magenta-subtler;
|
|
128
|
+
}
|
|
129
|
+
.ctx-magenta-subtlest {
|
|
130
|
+
@apply ctx-magenta-subtlest;
|
|
131
|
+
}
|
|
132
|
+
.ctx-neutral-boldest {
|
|
133
|
+
@apply ctx-neutral-boldest;
|
|
134
|
+
}
|
|
135
|
+
.ctx-neutral-bolder {
|
|
136
|
+
@apply ctx-neutral-bolder;
|
|
137
|
+
}
|
|
138
|
+
.ctx-neutral-bold {
|
|
139
|
+
@apply ctx-neutral-bold;
|
|
140
|
+
}
|
|
141
|
+
.ctx-neutral-subtle {
|
|
142
|
+
@apply ctx-neutral-subtle;
|
|
143
|
+
}
|
|
144
|
+
.ctx-neutral-subtler {
|
|
145
|
+
@apply ctx-neutral-subtler;
|
|
146
|
+
}
|
|
147
|
+
.ctx-neutral-subtlest {
|
|
148
|
+
@apply ctx-neutral-subtlest;
|
|
149
|
+
}
|
|
150
|
+
.ctx-orange-bolder {
|
|
151
|
+
@apply ctx-orange-bolder;
|
|
152
|
+
}
|
|
153
|
+
.ctx-orange-subtle {
|
|
154
|
+
@apply ctx-orange-subtle;
|
|
155
|
+
}
|
|
156
|
+
.ctx-orange-subtler {
|
|
157
|
+
@apply ctx-orange-subtler;
|
|
158
|
+
}
|
|
159
|
+
.ctx-orange-subtlest {
|
|
160
|
+
@apply ctx-orange-subtlest;
|
|
161
|
+
}
|
|
162
|
+
.ctx-purple-bolder {
|
|
163
|
+
@apply ctx-purple-bolder;
|
|
164
|
+
}
|
|
165
|
+
.ctx-purple-subtle {
|
|
166
|
+
@apply ctx-purple-subtle;
|
|
167
|
+
}
|
|
168
|
+
.ctx-purple-subtler {
|
|
169
|
+
@apply ctx-purple-subtler;
|
|
170
|
+
}
|
|
171
|
+
.ctx-purple-subtlest {
|
|
172
|
+
@apply ctx-purple-subtlest;
|
|
173
|
+
}
|
|
174
|
+
.ctx-red-bolder {
|
|
175
|
+
@apply ctx-red-bolder;
|
|
176
|
+
}
|
|
177
|
+
.ctx-red-subtle {
|
|
178
|
+
@apply ctx-red-subtle;
|
|
179
|
+
}
|
|
180
|
+
.ctx-red-subtler {
|
|
181
|
+
@apply ctx-red-subtler;
|
|
182
|
+
}
|
|
183
|
+
.ctx-red-subtlest {
|
|
184
|
+
@apply ctx-red-subtlest;
|
|
185
|
+
}
|
|
186
|
+
.ctx-success-subtlest {
|
|
187
|
+
@apply ctx-success;
|
|
188
|
+
}
|
|
189
|
+
.ctx-success-bolder {
|
|
190
|
+
@apply ctx-success-bolder;
|
|
191
|
+
}
|
|
192
|
+
.ctx-teal-bolder {
|
|
193
|
+
@apply ctx-teal-bolder;
|
|
194
|
+
}
|
|
195
|
+
.ctx-teal-subtle {
|
|
196
|
+
@apply ctx-teal-subtle;
|
|
197
|
+
}
|
|
198
|
+
.ctx-teal-subtler {
|
|
199
|
+
@apply ctx-teal-subtler;
|
|
200
|
+
}
|
|
201
|
+
.ctx-teal-subtlest {
|
|
202
|
+
@apply ctx-teal-subtlest;
|
|
203
|
+
}
|
|
204
|
+
.ctx-warning-subtlest {
|
|
205
|
+
@apply ctx-warning;
|
|
206
|
+
}
|
|
207
|
+
.ctx-warning-bolder {
|
|
208
|
+
@apply ctx-warning-bolder;
|
|
209
|
+
}
|
|
210
|
+
.ctx-yellow-bolder {
|
|
211
|
+
@apply ctx-yellow-bolder;
|
|
212
|
+
}
|
|
213
|
+
.ctx-yellow-subtle {
|
|
214
|
+
@apply ctx-yellow-subtle;
|
|
215
|
+
}
|
|
216
|
+
.ctx-yellow-subtler {
|
|
217
|
+
@apply ctx-yellow-subtler;
|
|
218
|
+
}
|
|
219
|
+
.ctx-yellow-subtlest {
|
|
220
|
+
@apply ctx-yellow-subtlest;
|
|
221
|
+
}
|
|
12
222
|
|
|
13
|
-
/* spacing variables */
|
|
14
|
-
--spacing-inset-top: env(safe-area-inset-top, var(--safe-area-inset-top, 0px));
|
|
15
|
-
--spacing-inset-top-1: max(0.25rem, env(safe-area-inset-top, var(--safe-area-inset-top, 0px)));
|
|
16
|
-
--spacing-inset-top-2: max(0.5rem, env(safe-area-inset-top, var(--safe-area-inset-top, 0px)));
|
|
17
|
-
--spacing-inset-top-4: max(1rem, env(safe-area-inset-top, var(--safe-area-inset-top, 0px)));
|
|
18
|
-
--spacing-inset-bottom: env(safe-area-inset-bottom, var(--safe-area-inset-bottom, 0px));
|
|
19
|
-
--spacing-inset-bottom-1: max(0.25rem, env(safe-area-inset-bottom, var(--safe-area-inset-bottom, 0px)));
|
|
20
|
-
--spacing-inset-bottom-2: max(0.5rem, env(safe-area-inset-bottom, var(--safe-area-inset-bottom, 0px)));
|
|
21
|
-
--spacing-inset-bottom-4: max(1rem, env(safe-area-inset-bottom, var(--safe-area-inset-bottom, 0px)));
|
|
22
|
-
--spacing-inset-left: env(safe-area-inset-left, var(--safe-area-inset-left, 0px));
|
|
23
|
-
--spacing-inset-right: env(safe-area-inset-right, var(--safe-area-inset-right, 0px));
|
|
24
|
-
|
|
25
|
-
--spacing-18: 4.5rem;
|
|
26
|
-
|
|
27
|
-
/* color variables */
|
|
28
|
-
--color-overlay: rgba(17, 24, 39, 0.85);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.ctx-default { @apply ctx-default; }
|
|
32
|
-
.ctx-success { @apply ctx-success-subtlest; }
|
|
33
|
-
.ctx-danger { @apply ctx-danger-subtlest; }
|
|
34
|
-
.ctx-warning { @apply ctx-warning-subtlest; }
|
|
35
|
-
.ctx-info { @apply ctx-info-subtlest; }
|
|
36
|
-
|
|
37
|
-
.ctx-blue-bolder { @apply ctx-blue-bolder; }
|
|
38
|
-
.ctx-blue-subtle { @apply ctx-blue-subtle; }
|
|
39
|
-
.ctx-blue-subtler { @apply ctx-blue-subtler; }
|
|
40
|
-
.ctx-blue-subtlest { @apply ctx-blue-subtlest; }
|
|
41
|
-
.ctx-brand-boldest { @apply ctx-brand-boldest; }
|
|
42
|
-
.ctx-brand-bolder { @apply ctx-brand-bolder; }
|
|
43
|
-
.ctx-brand-bold { @apply ctx-brand-bold; }
|
|
44
|
-
.ctx-brand-subtle { @apply ctx-brand-subtle; }
|
|
45
|
-
.ctx-brand-subtler { @apply ctx-brand-subtler; }
|
|
46
|
-
.ctx-brand-subtlest { @apply ctx-brand-subtlest; }
|
|
47
|
-
.ctx-brown-bolder { @apply ctx-brown-bolder; }
|
|
48
|
-
.ctx-brown-subtle { @apply ctx-brown-subtle; }
|
|
49
|
-
.ctx-brown-subtler { @apply ctx-brown-subtler; }
|
|
50
|
-
.ctx-brown-subtlest { @apply ctx-brown-subtlest; }
|
|
51
|
-
.ctx-danger-subtlest { @apply ctx-danger; }
|
|
52
|
-
.ctx-danger-bolder { @apply ctx-danger-bolder; }
|
|
53
|
-
.ctx-gray-bolder { @apply ctx-gray-bolder; }
|
|
54
|
-
.ctx-gray-subtle { @apply ctx-gray-subtle; }
|
|
55
|
-
.ctx-gray-subtler { @apply ctx-gray-subtler; }
|
|
56
|
-
.ctx-gray-subtlest { @apply ctx-gray-subtlest; }
|
|
57
|
-
.ctx-green-bolder { @apply ctx-green-bolder; }
|
|
58
|
-
.ctx-green-subtle { @apply ctx-green-subtle; }
|
|
59
|
-
.ctx-green-subtler { @apply ctx-green-subtler; }
|
|
60
|
-
.ctx-green-subtlest { @apply ctx-green-subtlest; }
|
|
61
|
-
.ctx-info-subtlest { @apply ctx-info; }
|
|
62
|
-
.ctx-info-bolder { @apply ctx-info-bolder; }
|
|
63
|
-
.ctx-magenta-bolder { @apply ctx-magenta-bolder; }
|
|
64
|
-
.ctx-magenta-subtle { @apply ctx-magenta-subtle; }
|
|
65
|
-
.ctx-magenta-subtler { @apply ctx-magenta-subtler; }
|
|
66
|
-
.ctx-magenta-subtlest { @apply ctx-magenta-subtlest; }
|
|
67
|
-
.ctx-neutral-boldest { @apply ctx-neutral-boldest; }
|
|
68
|
-
.ctx-neutral-bolder { @apply ctx-neutral-bolder; }
|
|
69
|
-
.ctx-neutral-bold { @apply ctx-neutral-bold; }
|
|
70
|
-
.ctx-neutral-subtle { @apply ctx-neutral-subtle; }
|
|
71
|
-
.ctx-neutral-subtler { @apply ctx-neutral-subtler; }
|
|
72
|
-
.ctx-neutral-subtlest { @apply ctx-neutral-subtlest; }
|
|
73
|
-
.ctx-orange-bolder { @apply ctx-orange-bolder; }
|
|
74
|
-
.ctx-orange-subtle { @apply ctx-orange-subtle; }
|
|
75
|
-
.ctx-orange-subtler { @apply ctx-orange-subtler; }
|
|
76
|
-
.ctx-orange-subtlest { @apply ctx-orange-subtlest; }
|
|
77
|
-
.ctx-purple-bolder { @apply ctx-purple-bolder; }
|
|
78
|
-
.ctx-purple-subtle { @apply ctx-purple-subtle; }
|
|
79
|
-
.ctx-purple-subtler { @apply ctx-purple-subtler; }
|
|
80
|
-
.ctx-purple-subtlest { @apply ctx-purple-subtlest; }
|
|
81
|
-
.ctx-red-bolder { @apply ctx-red-bolder; }
|
|
82
|
-
.ctx-red-subtle { @apply ctx-red-subtle; }
|
|
83
|
-
.ctx-red-subtler { @apply ctx-red-subtler; }
|
|
84
|
-
.ctx-red-subtlest { @apply ctx-red-subtlest; }
|
|
85
|
-
.ctx-success-subtlest { @apply ctx-success; }
|
|
86
|
-
.ctx-success-bolder { @apply ctx-success-bolder; }
|
|
87
|
-
.ctx-teal-bolder { @apply ctx-teal-bolder; }
|
|
88
|
-
.ctx-teal-subtle { @apply ctx-teal-subtle; }
|
|
89
|
-
.ctx-teal-subtler { @apply ctx-teal-subtler; }
|
|
90
|
-
.ctx-teal-subtlest { @apply ctx-teal-subtlest; }
|
|
91
|
-
.ctx-warning-subtlest { @apply ctx-warning; }
|
|
92
|
-
.ctx-warning-bolder { @apply ctx-warning-bolder; }
|
|
93
|
-
.ctx-yellow-bolder { @apply ctx-yellow-bolder; }
|
|
94
|
-
.ctx-yellow-subtle { @apply ctx-yellow-subtle; }
|
|
95
|
-
.ctx-yellow-subtler { @apply ctx-yellow-subtler; }
|
|
96
|
-
.ctx-yellow-subtlest { @apply ctx-yellow-subtlest; }
|
|
97
223
|
|
|
98
224
|
|
|
99
225
|
/* === ./styles/semantic.css === */
|
|
@@ -590,77 +716,83 @@
|
|
|
590
716
|
|
|
591
717
|
/* === ./styles/utilities.css === */
|
|
592
718
|
@utility center {
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
&.top {
|
|
596
|
-
@apply items-start;
|
|
597
|
-
}
|
|
719
|
+
@apply flex items-center justify-center;
|
|
598
720
|
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
721
|
+
&.top {
|
|
722
|
+
@apply items-start;
|
|
723
|
+
}
|
|
602
724
|
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
725
|
+
&.bottom {
|
|
726
|
+
@apply items-end;
|
|
727
|
+
}
|
|
606
728
|
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
729
|
+
&.left {
|
|
730
|
+
@apply justify-start;
|
|
731
|
+
}
|
|
610
732
|
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
733
|
+
&.right {
|
|
734
|
+
@apply justify-end;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
&.stretch {
|
|
738
|
+
@apply items-stretch;
|
|
739
|
+
}
|
|
614
740
|
}
|
|
615
741
|
|
|
616
742
|
@utility col {
|
|
617
|
-
|
|
743
|
+
@apply flex flex-col items-center justify-center;
|
|
618
744
|
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
745
|
+
&.left {
|
|
746
|
+
@apply items-start;
|
|
747
|
+
}
|
|
622
748
|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
749
|
+
&.right {
|
|
750
|
+
@apply items-end;
|
|
751
|
+
}
|
|
626
752
|
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
753
|
+
&.top {
|
|
754
|
+
@apply justify-start;
|
|
755
|
+
}
|
|
630
756
|
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
757
|
+
&.bottom {
|
|
758
|
+
@apply justify-end;
|
|
759
|
+
}
|
|
634
760
|
}
|
|
635
761
|
|
|
636
762
|
@utility between {
|
|
637
|
-
|
|
763
|
+
@apply justify-between;
|
|
638
764
|
}
|
|
639
765
|
|
|
640
766
|
@utility hide-scrollbar {
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
767
|
+
-ms-overflow-style: none; /* for Internet Explorer, Edge */
|
|
768
|
+
scrollbar-width: none; /* for Firefox */
|
|
769
|
+
overflow-y: scroll;
|
|
644
770
|
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
771
|
+
&::-webkit-scrollbar {
|
|
772
|
+
display: none; /* for Chrome, Safari, and Opera */
|
|
773
|
+
}
|
|
648
774
|
}
|
|
649
775
|
|
|
650
776
|
/* Capitalize first letter */
|
|
651
777
|
@utility capital {
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
778
|
+
@apply inline-block;
|
|
779
|
+
|
|
780
|
+
&::first-letter {
|
|
781
|
+
text-transform: uppercase;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
&.bcc-badge {
|
|
785
|
+
@apply inline-flex;
|
|
786
|
+
}
|
|
656
787
|
}
|
|
657
788
|
|
|
658
789
|
/* Inset 0 */
|
|
659
790
|
@utility inset-0 {
|
|
660
|
-
@apply
|
|
791
|
+
@apply top-0 right-0 bottom-0 left-0;
|
|
661
792
|
}
|
|
662
793
|
|
|
663
794
|
|
|
795
|
+
|
|
664
796
|
/* === ./styles/contexts.css === */
|
|
665
797
|
/* Auto-generated from src/figma-modes. Do not edit by hand. */
|
|
666
798
|
/* Run: pnpm run generate:context-css */
|
|
@@ -768,18 +900,18 @@
|
|
|
768
900
|
}
|
|
769
901
|
|
|
770
902
|
@utility ctx-brand-bolder {
|
|
771
|
-
--ctx-text: var(--color-default-
|
|
903
|
+
--ctx-text: var(--color-default-neutral-0);
|
|
772
904
|
--ctx-text-bold: var(--color-default-neutral-0);
|
|
773
|
-
--ctx-background: var(--color-default-bcc-
|
|
774
|
-
--ctx-gradient: var(--color-default-bcc-
|
|
905
|
+
--ctx-background: var(--color-default-bcc-800);
|
|
906
|
+
--ctx-gradient: var(--color-default-bcc-900);
|
|
775
907
|
--ctx-border: var(--color-default-bcc-700);
|
|
776
908
|
--ctx-shadow: var(--color-neutral-alpha-500A);
|
|
777
|
-
--ctx-text-hover: var(--color-default-
|
|
778
|
-
--ctx-text-pressed: var(--color-default-
|
|
779
|
-
--ctx-background-hover: var(--color-default-bcc-
|
|
780
|
-
--ctx-background-pressed: var(--color-default-bcc-
|
|
781
|
-
--ctx-gradient-hover: var(--color-default-bcc-
|
|
782
|
-
--ctx-gradient-pressed: var(--color-default-bcc-
|
|
909
|
+
--ctx-text-hover: var(--color-default-neutral-0);
|
|
910
|
+
--ctx-text-pressed: var(--color-default-neutral-0);
|
|
911
|
+
--ctx-background-hover: var(--color-default-bcc-900);
|
|
912
|
+
--ctx-background-pressed: var(--color-default-bcc-1000);
|
|
913
|
+
--ctx-gradient-hover: var(--color-default-bcc-1000);
|
|
914
|
+
--ctx-gradient-pressed: var(--color-default-bcc-1000);
|
|
783
915
|
--ctx-border-hover: var(--color-default-bcc-700);
|
|
784
916
|
--ctx-border-pressed: var(--color-default-bcc-700);
|
|
785
917
|
}
|
|
@@ -974,16 +1106,16 @@
|
|
|
974
1106
|
@utility ctx-gray-bolder {
|
|
975
1107
|
--ctx-text: var(--color-default-neutral-200);
|
|
976
1108
|
--ctx-text-bold: var(--color-default-neutral-100);
|
|
977
|
-
--ctx-background: var(--color-default-neutral-
|
|
978
|
-
--ctx-gradient: var(--color-default-neutral-
|
|
1109
|
+
--ctx-background: var(--color-default-neutral-700);
|
|
1110
|
+
--ctx-gradient: var(--color-default-neutral-800);
|
|
979
1111
|
--ctx-border: var(--color-default-neutral-700);
|
|
980
1112
|
--ctx-shadow: var(--color-neutral-alpha-500A);
|
|
981
1113
|
--ctx-text-hover: var(--color-default-neutral-200);
|
|
982
1114
|
--ctx-text-pressed: var(--color-default-neutral-200);
|
|
983
|
-
--ctx-background-hover: var(--color-default-neutral-
|
|
984
|
-
--ctx-background-pressed: var(--color-default-neutral-
|
|
985
|
-
--ctx-gradient-hover: var(--color-default-neutral-
|
|
986
|
-
--ctx-gradient-pressed: var(--color-default-neutral-
|
|
1115
|
+
--ctx-background-hover: var(--color-default-neutral-800);
|
|
1116
|
+
--ctx-background-pressed: var(--color-default-neutral-900);
|
|
1117
|
+
--ctx-gradient-hover: var(--color-default-neutral-900);
|
|
1118
|
+
--ctx-gradient-pressed: var(--color-default-neutral-900);
|
|
987
1119
|
--ctx-border-hover: var(--color-default-neutral-700);
|
|
988
1120
|
--ctx-border-pressed: var(--color-default-neutral-700);
|
|
989
1121
|
}
|
|
@@ -1722,88 +1854,104 @@
|
|
|
1722
1854
|
|
|
1723
1855
|
|
|
1724
1856
|
/* === ./styles/context.css === */
|
|
1725
|
-
|
|
1726
1857
|
@theme {
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1858
|
+
--color-brand-100: var(--color-bcc-100);
|
|
1859
|
+
--color-brand-200: var(--color-bcc-200);
|
|
1860
|
+
--color-brand-300: var(--color-bcc-300);
|
|
1861
|
+
--color-brand-400: var(--color-bcc-400);
|
|
1862
|
+
--color-brand-500: var(--color-bcc-500);
|
|
1863
|
+
--color-brand-600: var(--color-bcc-600);
|
|
1864
|
+
--color-brand-700: var(--color-bcc-700);
|
|
1865
|
+
--color-brand-800: var(--color-bcc-800);
|
|
1866
|
+
--color-brand-900: var(--color-bcc-900);
|
|
1867
|
+
--color-brand-1000: var(--color-bcc-1000);
|
|
1737
1868
|
}
|
|
1738
1869
|
|
|
1739
1870
|
/** DEFAULT CONTEXTS */
|
|
1740
1871
|
@utility ctx-default {
|
|
1741
|
-
|
|
1872
|
+
@apply ctx-neutral-subtlest;
|
|
1873
|
+
}
|
|
1874
|
+
@utility ctx-success {
|
|
1875
|
+
@apply ctx-success-subtlest;
|
|
1876
|
+
}
|
|
1877
|
+
@utility ctx-danger {
|
|
1878
|
+
@apply ctx-danger-subtlest;
|
|
1879
|
+
}
|
|
1880
|
+
@utility ctx-warning {
|
|
1881
|
+
@apply ctx-warning-subtlest;
|
|
1882
|
+
}
|
|
1883
|
+
@utility ctx-info {
|
|
1884
|
+
@apply ctx-info-subtlest;
|
|
1742
1885
|
}
|
|
1743
|
-
@utility ctx-success { @apply ctx-success-subtlest; }
|
|
1744
|
-
@utility ctx-danger { @apply ctx-danger-subtlest; }
|
|
1745
|
-
@utility ctx-warning { @apply ctx-warning-subtlest; }
|
|
1746
|
-
@utility ctx-info { @apply ctx-info-subtlest; }
|
|
1747
1886
|
|
|
1748
1887
|
@utility text-ctx {
|
|
1749
|
-
|
|
1888
|
+
color: var(--ctx-text);
|
|
1750
1889
|
}
|
|
1751
1890
|
|
|
1752
1891
|
@utility text-ctx-bold {
|
|
1753
|
-
|
|
1892
|
+
color: var(--ctx-text-bold);
|
|
1754
1893
|
}
|
|
1755
1894
|
|
|
1756
1895
|
@utility bg-ctx {
|
|
1757
|
-
|
|
1896
|
+
background-color: var(--ctx-background);
|
|
1758
1897
|
}
|
|
1759
1898
|
|
|
1760
1899
|
@utility border-ctx {
|
|
1761
|
-
|
|
1900
|
+
border-color: var(--ctx-border);
|
|
1762
1901
|
}
|
|
1763
1902
|
|
|
1764
1903
|
@utility shadow-ctx {
|
|
1765
|
-
|
|
1904
|
+
--tw-shadow-color: var(--ctx-shadow);
|
|
1766
1905
|
}
|
|
1767
1906
|
|
|
1768
1907
|
@utility ctx {
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1908
|
+
background-color: var(--ctx-background);
|
|
1909
|
+
color: var(--ctx-text);
|
|
1910
|
+
border-color: var(--ctx-border);
|
|
1772
1911
|
}
|
|
1773
1912
|
|
|
1774
1913
|
@utility ctx-gradient {
|
|
1775
|
-
|
|
1914
|
+
background: linear-gradient(225deg, var(--ctx-background) 0%, var(--ctx-gradient) 100%);
|
|
1915
|
+
|
|
1916
|
+
@variant dark {
|
|
1917
|
+
background: linear-gradient(225deg, var(--ctx-gradient) 0%, var(--ctx-background) 100%);
|
|
1918
|
+
}
|
|
1776
1919
|
}
|
|
1777
1920
|
|
|
1778
1921
|
@utility ctx-raised {
|
|
1779
|
-
|
|
1922
|
+
box-shadow:
|
|
1923
|
+
0 1px 1px 0 var(--ctx-shadow),
|
|
1924
|
+
0 0 1px 0 var(--ctx-shadow);
|
|
1780
1925
|
}
|
|
1781
1926
|
|
|
1782
1927
|
@utility ctx-flat {
|
|
1783
|
-
|
|
1928
|
+
--ctx-background: transparent;
|
|
1784
1929
|
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1930
|
+
@variant hover {
|
|
1931
|
+
--ctx-background: var(--ctx-background-hover);
|
|
1932
|
+
}
|
|
1788
1933
|
}
|
|
1789
1934
|
|
|
1790
1935
|
@utility clickable {
|
|
1791
|
-
|
|
1936
|
+
cursor: pointer;
|
|
1792
1937
|
}
|
|
1793
1938
|
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1939
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1940
|
+
.clickable:hover {
|
|
1941
|
+
--ctx-background: var(--ctx-background-hover);
|
|
1942
|
+
--ctx-text: var(--ctx-text-hover);
|
|
1943
|
+
--ctx-border: var(--ctx-border-hover);
|
|
1944
|
+
}
|
|
1799
1945
|
|
|
1800
|
-
.clickable:active {
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1946
|
+
.clickable:active {
|
|
1947
|
+
--ctx-background: var(--ctx-background-pressed);
|
|
1948
|
+
--ctx-text: var(--ctx-text-pressed);
|
|
1949
|
+
--ctx-border: var(--ctx-border-pressed);
|
|
1950
|
+
}
|
|
1804
1951
|
}
|
|
1805
1952
|
|
|
1806
1953
|
|
|
1954
|
+
|
|
1807
1955
|
/* === ./styles/fonts.css === */
|
|
1808
1956
|
@utility heading-xs { font: var(--heading-xs); }
|
|
1809
1957
|
@utility heading-sm { font: var(--heading-sm); }
|
|
@@ -1823,105 +1971,360 @@
|
|
|
1823
1971
|
/* === ./styles/component-overrides.css === */
|
|
1824
1972
|
/** Custom styles to fix primevue components that are not custom or wrapped. */
|
|
1825
1973
|
|
|
1974
|
+
:root {
|
|
1975
|
+
--p-toast-width: min(85vw, 400px);
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
/**
|
|
1979
|
+
* GUTTER FIX
|
|
1980
|
+
* Primevue's dropwdown components are all missing the gap between input and dropdown
|
|
1981
|
+
**/
|
|
1982
|
+
.p-autocomplete-overlay,
|
|
1983
|
+
.p-menu-overlay,
|
|
1984
|
+
.p-multiselect-overlay,
|
|
1985
|
+
.p-select-overlay,
|
|
1986
|
+
.p-datepicker-panel,
|
|
1987
|
+
.p-treeselect-overlay {
|
|
1988
|
+
margin: var(--p-anchor-gutter) 0;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
/* This fix is to ensure overlay badge is contained within the size of the component it wraps */
|
|
1992
|
+
.p-overlaybadge {
|
|
1993
|
+
display: inline-block;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1826
1996
|
/**
|
|
1827
|
-
|
|
1997
|
+
* BccAutocomplete
|
|
1828
1998
|
**/
|
|
1829
1999
|
|
|
1830
2000
|
/** Our icons are a bit smaller that Primevue's default */
|
|
1831
2001
|
.p-autocomplete .p-icon {
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
2002
|
+
--p-icon-size: var(--icon-size-sm);
|
|
2003
|
+
--p-form-field-sm-font-size: var(--icon-size-sm);
|
|
2004
|
+
--p-form-field-lg-font-size: var(--icon-size-md);
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
.p-autocomplete .p-autocomplete-clear-icon {
|
|
2008
|
+
/** middle-align the icon */
|
|
2009
|
+
top: calc(50% - var(--icon-size-sm) / 2);
|
|
2010
|
+
margin-top: 0;
|
|
1835
2011
|
}
|
|
1836
2012
|
|
|
1837
2013
|
.p-autocomplete-clearable .p-inputtext {
|
|
1838
|
-
|
|
2014
|
+
flex-grow: 1;
|
|
1839
2015
|
}
|
|
1840
2016
|
|
|
1841
2017
|
.p-autocomplete-chip.p-chip {
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
2018
|
+
padding-block-start: calc(var(--p-autocomplete-padding-y) / 2);
|
|
2019
|
+
padding-block-end: calc(var(--p-autocomplete-padding-y) / 2);
|
|
2020
|
+
border-radius: var(--p-autocomplete-chip-border-radius);
|
|
1845
2021
|
}
|
|
1846
2022
|
|
|
1847
|
-
|
|
1848
2023
|
/**
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
.p-menu-overlay,
|
|
1854
|
-
.p-multiselect-overlay,
|
|
1855
|
-
.p-select-overlay,
|
|
1856
|
-
.p-treeselect-overlay {
|
|
1857
|
-
margin: var(--p-anchor-gutter) 0;
|
|
2024
|
+
* BccSelect
|
|
2025
|
+
**/
|
|
2026
|
+
.p-select {
|
|
2027
|
+
--p-icon-size: var(--icon-size-sm);
|
|
1858
2028
|
}
|
|
1859
2029
|
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
2030
|
+
.p-select.inline-select {
|
|
2031
|
+
@apply mx-auto inline-flex w-auto items-center border-0 bg-transparent shadow-none;
|
|
2032
|
+
--p-icon-size: 1.25em;
|
|
2033
|
+
--p-select-dropdown-width: 1.5em;
|
|
2034
|
+
--p-select-min-height: auto;
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
.p-select.inline-select .p-select-label {
|
|
2038
|
+
@apply inline-block font-semibold;
|
|
2039
|
+
font-size: inherit;
|
|
2040
|
+
padding: 0 0 0 0.25em;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
.p-select.inline-select.inverse {
|
|
2044
|
+
--p-select-color: var(--color-neutral-0);
|
|
2045
|
+
--p-select-dropdown-color: var(--color-neutral-0);
|
|
2046
|
+
--p-select-placeholder-color: var(--color-dark-neutral-1000);
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
/**
|
|
2050
|
+
* Fix issue with icons inside Input within an InputGroup being hidden when Input is in focus
|
|
2051
|
+
**/
|
|
2052
|
+
.p-inputicon {
|
|
2053
|
+
z-index: 2;
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
.p-dialog-close-button {
|
|
2057
|
+
--p-icon-size: var(--icon-size-sm);
|
|
2058
|
+
}
|
|
2059
|
+
.p-dialog .p-button-icon:empty {
|
|
2060
|
+
display: none;
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
.p-togglebutton {
|
|
2064
|
+
font-size: var(--text-sm);
|
|
2065
|
+
border: 0;
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
.p-togglebutton-sm {
|
|
2069
|
+
font-size: var(--text-sm);
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
.p-togglebutton-lg {
|
|
2073
|
+
font-size: var(--text-md);
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
/* primevue-overrides.css - CSS-level component overrides */
|
|
2077
|
+
@layer custom {
|
|
2078
|
+
.p-accordionheader {
|
|
2079
|
+
gap: var(--p-accordion-header-gap);
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.p-autocomplete-input-multiple {
|
|
2083
|
+
min-height: var(--p-autocomplete-input-multiple-min-height);
|
|
2084
|
+
gap: var(--p-autocomplete-input-multiple-gap);
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
.p-badge-circle {
|
|
2088
|
+
border-radius: var(--p-badge-circle-border-radius);
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
.p-button {
|
|
2092
|
+
min-height: var(--p-button-min-height);
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
.p-button-sm {
|
|
2096
|
+
min-height: var(--p-button-sm-min-height);
|
|
2097
|
+
}
|
|
2098
|
+
|
|
2099
|
+
.p-button-lg {
|
|
2100
|
+
min-height: var(--p-button-lg-min-height);
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
.p-button.p-button-icon-only {
|
|
2104
|
+
min-width: var(--p-button-icon-only-width);
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
.p-button-sm.p-button-icon-only {
|
|
2108
|
+
min-width: var(--p-button-sm-icon-only-width);
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
.p-button-lg.p-button-icon-only {
|
|
2112
|
+
min-width: var(--p-button-lg-icon-only-width);
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
.p-divider {
|
|
2116
|
+
gap: var(--p-divider-content-gap);
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
.p-inputgroupaddon {
|
|
2120
|
+
min-height: var(--p-inputgroup-addon-min-height);
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
.p-inputtext {
|
|
2124
|
+
min-height: var(--p-inputtext-min-height);
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
.p-inputtext-sm {
|
|
2128
|
+
min-height: var(--p-inputtext-sm-min-height);
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
.p-inputtext-lg {
|
|
2132
|
+
min-height: var(--p-inputtext-lg-min-height);
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
.p-message-text {
|
|
2136
|
+
line-height: var(--p-message-text-line-height);
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
.p-multiselect {
|
|
2140
|
+
min-height: var(--p-multiselect-min-height);
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
.p-multiselect-sm {
|
|
2144
|
+
min-height: var(--p-multiselect-sm-min-height);
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.p-multiselect-lg {
|
|
2148
|
+
min-height: var(--p-multiselect-lg-min-height);
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.p-multiselect-label-container {
|
|
2152
|
+
display: flex;
|
|
2153
|
+
align-items: center;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
.p-radiobutton {
|
|
2157
|
+
gap: var(--p-radiobutton-gap);
|
|
2158
|
+
border-radius: var(--p-radiobutton-border-radius);
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.p-radiobutton-icon {
|
|
2162
|
+
border-radius: var(--p-radiobutton-icon-border-radius);
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
.p-radiobutton-icon-sm {
|
|
2166
|
+
border-radius: var(--p-radiobutton-icon-sm-border-radius);
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
.p-radiobutton-icon-lg {
|
|
2170
|
+
border-radius: var(--p-radiobutton-icon-lg-border-radius);
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.p-select {
|
|
2174
|
+
min-height: var(--p-select-min-height);
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
.p-select-sm {
|
|
2178
|
+
min-height: var(--p-select-sm-min-height);
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
.p-select-lg {
|
|
2182
|
+
min-height: var(--p-select-lg-min-height);
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
.p-select-label {
|
|
2186
|
+
display: flex;
|
|
2187
|
+
align-items: center;
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
.p-select-option {
|
|
2191
|
+
gap: var(--p-select-option-gap);
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
.p-textarea {
|
|
2195
|
+
min-height: var(--p-textarea-min-height);
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.p-togglebutton {
|
|
2199
|
+
min-height: var(--p-togglebutton-min-height);
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
.p-togglebutton .p-togglebutton-sm {
|
|
2203
|
+
min-height: var(--p-togglebutton-sm-min-height);
|
|
2204
|
+
border-radius: var(--p-togglebutton-sm-border-radius);
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
.p-togglebutton-lg {
|
|
2208
|
+
min-height: var(--p-togglebutton-lg-min-height);
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
.p-togglebutton .p-togglebutton-content {
|
|
2212
|
+
min-height: var(--p-togglebutton-content-min-height);
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.p-togglebutton-sm .p-togglebutton-content {
|
|
2216
|
+
min-height: var(--p-togglebutton-content-sm-min-height);
|
|
2217
|
+
border-radius: var(--p-togglebutton-content-sm-border-radius);
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
.p-togglebutton-lg .p-togglebutton-content {
|
|
2221
|
+
min-height: var(--p-togglebutton-content-lg-min-height);
|
|
2222
|
+
}
|
|
1863
2223
|
}
|
|
1864
2224
|
|
|
1865
2225
|
|
|
1866
2226
|
|
|
2227
|
+
|
|
1867
2228
|
/* === ./components/custom/styles.css === */
|
|
1868
2229
|
|
|
2230
|
+
/* from ./BccAppNavigation/BccAppNavigation.css */
|
|
2231
|
+
@layer components {
|
|
2232
|
+
.bcc-app-nav {
|
|
2233
|
+
@apply bg-elevation-surface-default dark:border-brand-800 sticky inset-x-0 bottom-0 z-20 overflow-visible shadow-md sm:rounded-t-xl dark:border-t;
|
|
2234
|
+
}
|
|
2235
|
+
.bcc-app-nav-container {
|
|
2236
|
+
@apply center pb-inset-bottom-1 mx-auto max-w-lg pt-1;
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.bcc-app-nav-item {
|
|
2240
|
+
@apply relative flex h-12 flex-1 flex-col items-center justify-center gap-1 transition-colors focus:ring-0 focus:outline-none;
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.bcc-nav-item-icon {
|
|
2244
|
+
@apply size-6 icon-subtlest;
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
.bcc-nav-item-badge {
|
|
2248
|
+
@apply absolute top-0 right-1;
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
.bcc-nav-item-title {
|
|
2252
|
+
@apply heading-xs text-center text-subtlest opacity-75;
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
2256
|
+
@apply text-selected opacity-100;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
.bcc-app-nav-item--active .bcc-nav-item-icon {
|
|
2260
|
+
@apply text-selected;
|
|
2261
|
+
}
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
|
|
2265
|
+
|
|
1869
2266
|
/* from ./BccBadge/BccBadge.css */
|
|
1870
2267
|
@layer components {
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
@apply bg-ctx text-ctx;
|
|
1875
|
-
}
|
|
1876
|
-
.bcc-badge.sm {
|
|
1877
|
-
@apply w-4 h-4 text-heading-xs;
|
|
1878
|
-
}
|
|
1879
|
-
.bcc-badge.md {
|
|
1880
|
-
@apply h-5 w-5 text-heading-sm;
|
|
1881
|
-
}
|
|
1882
|
-
.bcc-badge.lg {
|
|
1883
|
-
@apply w-6 h-6 text-heading-md;
|
|
1884
|
-
}
|
|
1885
|
-
.bcc-badge.xl {
|
|
1886
|
-
@apply w-8 h-8 text-heading-lg;
|
|
1887
|
-
}
|
|
2268
|
+
.bcc-badge {
|
|
2269
|
+
@apply inline-flex shrink-0 items-center justify-center gap-1 rounded-full leading-none whitespace-nowrap;
|
|
1888
2270
|
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
2271
|
+
@apply bg-ctx text-ctx;
|
|
2272
|
+
}
|
|
2273
|
+
.bcc-badge.gradient {
|
|
2274
|
+
@apply ctx-gradient;
|
|
2275
|
+
}
|
|
2276
|
+
.bcc-badge.sm {
|
|
2277
|
+
@apply heading-xs h-4 w-4;
|
|
2278
|
+
}
|
|
2279
|
+
.bcc-badge.md {
|
|
2280
|
+
@apply heading-sm h-5 w-5;
|
|
2281
|
+
}
|
|
2282
|
+
.bcc-badge.lg {
|
|
2283
|
+
@apply heading-md h-6 w-6;
|
|
2284
|
+
}
|
|
2285
|
+
.bcc-badge.xl {
|
|
2286
|
+
@apply heading-md h-8 w-8;
|
|
2287
|
+
}
|
|
1898
2288
|
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
.bcc-badge-text.bordered.lg, .bcc-badge-text.bordered.xl {
|
|
1909
|
-
@apply px-1;
|
|
1910
|
-
}
|
|
2289
|
+
.bcc-badge .bcc-badge-icon {
|
|
2290
|
+
@apply size-4;
|
|
2291
|
+
}
|
|
2292
|
+
.bcc-badge.lg .bcc-badge-icon {
|
|
2293
|
+
@apply size-5;
|
|
2294
|
+
}
|
|
2295
|
+
.bcc-badge.xl .bcc-badge-icon {
|
|
2296
|
+
@apply size-6;
|
|
2297
|
+
}
|
|
1911
2298
|
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
2299
|
+
.bcc-badge.bcc-badge-text {
|
|
2300
|
+
@apply w-auto px-2;
|
|
2301
|
+
}
|
|
2302
|
+
.bcc-badge-text.lg,
|
|
2303
|
+
.bcc-badge-text.xl {
|
|
2304
|
+
@apply px-3;
|
|
2305
|
+
}
|
|
2306
|
+
.bcc-badge-text.border.lg,
|
|
2307
|
+
.bcc-badge-text.border.xl {
|
|
2308
|
+
@apply px-2;
|
|
2309
|
+
}
|
|
2310
|
+
.bcc-badge-text.bordered.lg,
|
|
2311
|
+
.bcc-badge-text.bordered.xl {
|
|
2312
|
+
@apply px-1;
|
|
2313
|
+
}
|
|
1916
2314
|
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
2315
|
+
.bcc-badge.border {
|
|
2316
|
+
@apply border-1;
|
|
2317
|
+
border-color: var(--ctx-background-pressed);
|
|
2318
|
+
}
|
|
1921
2319
|
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
2320
|
+
.bcc-badge.bordered {
|
|
2321
|
+
@apply border-2;
|
|
2322
|
+
border-color: var(--ctx-background-pressed);
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
.bcc-badge.squared {
|
|
2326
|
+
@apply rounded-sm;
|
|
2327
|
+
}
|
|
1925
2328
|
}
|
|
1926
2329
|
|
|
1927
2330
|
|
|
@@ -1970,6 +2373,7 @@ GUTTER FIX
|
|
|
1970
2373
|
|
|
1971
2374
|
.bcc-capacity-indicator.is-warning {
|
|
1972
2375
|
@apply ctx-yellow-subtlest;
|
|
2376
|
+
--bcc-capacity-indicator-circle: var(--ctx-background);
|
|
1973
2377
|
}
|
|
1974
2378
|
|
|
1975
2379
|
.bcc-capacity-indicator.is-full {
|
|
@@ -2011,40 +2415,43 @@ GUTTER FIX
|
|
|
2011
2415
|
|
|
2012
2416
|
/* from ./BccFrame/BccFrame.css */
|
|
2013
2417
|
@layer components {
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2418
|
+
.bcc-frame {
|
|
2419
|
+
@apply ctx ctx-default w-full border border-transparent;
|
|
2420
|
+
}
|
|
2017
2421
|
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2422
|
+
.bcc-frame.bcc-frame--shadow {
|
|
2423
|
+
@apply shadow-ctx shadow;
|
|
2424
|
+
}
|
|
2021
2425
|
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2426
|
+
.bcc-frame--raised {
|
|
2427
|
+
--ctx-background: var(--color-elevation-surface-raised-default);
|
|
2428
|
+
}
|
|
2429
|
+
.bcc-frame--rounded {
|
|
2430
|
+
@apply rounded-md;
|
|
2431
|
+
}
|
|
2432
|
+
.bcc-frame--raised.bcc-frame--shadow {
|
|
2433
|
+
@apply shadow-raised dark:border-default;
|
|
2434
|
+
}
|
|
2031
2435
|
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2436
|
+
.bcc-frame--overlay {
|
|
2437
|
+
--ctx-background: var(--color-elevation-surface-overlay-default);
|
|
2438
|
+
@apply border;
|
|
2439
|
+
}
|
|
2440
|
+
.bcc-frame--overlay.bcc-frame--shadow {
|
|
2441
|
+
@apply shadow-overlay dark:border-default;
|
|
2442
|
+
}
|
|
2038
2443
|
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2444
|
+
.bcc-frame--sunken {
|
|
2445
|
+
--ctx-background: var(--color-elevation-surface-sunken-default);
|
|
2446
|
+
@apply border;
|
|
2447
|
+
}
|
|
2448
|
+
.bcc-frame--sunken.bcc-frame--shadow {
|
|
2449
|
+
@apply dark:border-default shadow-inner;
|
|
2450
|
+
}
|
|
2045
2451
|
}
|
|
2046
2452
|
|
|
2047
2453
|
|
|
2454
|
+
|
|
2048
2455
|
/* from ./BccGraphic/BccGraphic.css */
|
|
2049
2456
|
@layer components {
|
|
2050
2457
|
.bcc-graphic .corner,
|
|
@@ -2094,43 +2501,53 @@ GUTTER FIX
|
|
|
2094
2501
|
@apply relative w-full;
|
|
2095
2502
|
}
|
|
2096
2503
|
|
|
2097
|
-
.bcc-nps-result
|
|
2504
|
+
.bcc-nps-result.xs {
|
|
2505
|
+
@apply w-24;
|
|
2506
|
+
}
|
|
2507
|
+
.bcc-nps-result.sm {
|
|
2508
|
+
@apply w-36;
|
|
2509
|
+
}
|
|
2510
|
+
.bcc-nps-result.md {
|
|
2511
|
+
@apply w-48;
|
|
2512
|
+
}
|
|
2513
|
+
.bcc-nps-result.lg {
|
|
2514
|
+
@apply w-60;
|
|
2515
|
+
}
|
|
2516
|
+
.bcc-nps-result.xl {
|
|
2517
|
+
@apply w-72;
|
|
2518
|
+
}
|
|
2519
|
+
|
|
2520
|
+
.bcc-nps-result .bcc-nps-result-gauge-dial {
|
|
2098
2521
|
transform-origin: center;
|
|
2099
2522
|
}
|
|
2100
2523
|
|
|
2101
|
-
.bcc-nps-result.animated .result-gauge-dial {
|
|
2524
|
+
.bcc-nps-result.animated .bcc-nps-result-gauge-dial {
|
|
2102
2525
|
transition-delay: 0.3s;
|
|
2103
2526
|
transition: all .7s cubic-bezier(0, 0, 0.3, 1.5);
|
|
2104
2527
|
}
|
|
2105
2528
|
|
|
2106
|
-
.bcc-nps-result-labels.lg {
|
|
2107
|
-
@apply bottom-[2em];
|
|
2108
|
-
}
|
|
2109
2529
|
.bcc-nps-result-labels {
|
|
2110
|
-
@apply absolute bottom-
|
|
2111
|
-
}
|
|
2112
|
-
.bcc-nps-result-labels.sm {
|
|
2113
|
-
@apply bottom-0;
|
|
2530
|
+
@apply absolute text-base bottom-1/4 translate-y-1/2 flex w-full flex-col items-center justify-center;
|
|
2114
2531
|
}
|
|
2115
2532
|
|
|
2116
|
-
.bcc-nps-result-labels.lg .bcc-nps-result-labels--heading {
|
|
2117
|
-
@apply text-heading-xl leading-tight;
|
|
2118
|
-
}
|
|
2119
2533
|
.bcc-nps-result-labels--heading {
|
|
2120
|
-
@apply text-
|
|
2534
|
+
@apply text-[1.25em] font-semibold leading-none;
|
|
2121
2535
|
}
|
|
2122
|
-
.bcc-nps-result-labels
|
|
2123
|
-
@apply text-
|
|
2536
|
+
.bcc-nps-result-labels--label {
|
|
2537
|
+
@apply text-[0.75em] text-subtlest;
|
|
2124
2538
|
}
|
|
2125
2539
|
|
|
2126
|
-
.bcc-nps-result
|
|
2127
|
-
@apply text-
|
|
2540
|
+
.bcc-nps-result.md .bcc-nps-result-labels {
|
|
2541
|
+
@apply text-lg;
|
|
2128
2542
|
}
|
|
2129
|
-
.bcc-nps-result-labels
|
|
2130
|
-
@apply text-
|
|
2543
|
+
.bcc-nps-result.lg .bcc-nps-result-labels {
|
|
2544
|
+
@apply text-xl;
|
|
2545
|
+
}
|
|
2546
|
+
.bcc-nps-result.xl .bcc-nps-result-labels {
|
|
2547
|
+
@apply text-2xl;
|
|
2131
2548
|
}
|
|
2132
|
-
.bcc-nps-result
|
|
2133
|
-
@apply text-
|
|
2549
|
+
.bcc-nps-result.full .bcc-nps-result-labels {
|
|
2550
|
+
@apply text-lg;
|
|
2134
2551
|
}
|
|
2135
2552
|
}
|
|
2136
2553
|
|
|
@@ -2139,7 +2556,7 @@ GUTTER FIX
|
|
|
2139
2556
|
/* from ./BccNpsScore/BccNpsScore.css */
|
|
2140
2557
|
@layer components {
|
|
2141
2558
|
.bcc-nps-score {
|
|
2142
|
-
@apply min-w-
|
|
2559
|
+
@apply min-w-70 p-4 body-sm flex flex-col gap-y-2 select-none;
|
|
2143
2560
|
}
|
|
2144
2561
|
|
|
2145
2562
|
.bcc-nps-score--heading {
|
|
@@ -2198,193 +2615,192 @@ GUTTER FIX
|
|
|
2198
2615
|
|
|
2199
2616
|
/* from ./BccReact/BccReact.css */
|
|
2200
2617
|
@layer components {
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2618
|
+
.bcc-react {
|
|
2619
|
+
@apply relative flex w-full items-center overflow-visible;
|
|
2620
|
+
}
|
|
2621
|
+
.bcc-react-toggle {
|
|
2622
|
+
@apply mr-1 flex shrink-0 cursor-pointer items-center justify-center rounded-full p-1 transition;
|
|
2623
|
+
}
|
|
2624
|
+
.bcc-react-list {
|
|
2625
|
+
@apply hide-scrollbar flex flex-1 items-center gap-1 overflow-x-auto overflow-y-hidden rounded-full p-1;
|
|
2626
|
+
}
|
|
2627
|
+
.bcc-react-empty {
|
|
2628
|
+
@apply heading-xs flex items-center;
|
|
2629
|
+
}
|
|
2213
2630
|
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2631
|
+
.bcc-react-selector-container {
|
|
2632
|
+
@apply absolute z-50 h-9;
|
|
2633
|
+
@apply top-11 origin-top-left;
|
|
2634
|
+
}
|
|
2218
2635
|
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2636
|
+
.bcc-react-selector-container--top {
|
|
2637
|
+
@apply -top-10 origin-bottom-left;
|
|
2638
|
+
}
|
|
2222
2639
|
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2640
|
+
.bcc-react-selector {
|
|
2641
|
+
@apply flex h-9 flex-col overflow-hidden bg-neutral-100 px-0 shadow-md;
|
|
2642
|
+
border-radius: 18px;
|
|
2643
|
+
}
|
|
2227
2644
|
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2645
|
+
.bcc-react-selector-emojis-container {
|
|
2646
|
+
@apply flex items-center bg-neutral-100 px-1;
|
|
2647
|
+
}
|
|
2231
2648
|
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2649
|
+
.bcc-react-selector-more {
|
|
2650
|
+
@apply flex w-9 items-center justify-center;
|
|
2651
|
+
}
|
|
2652
|
+
.bcc-react-selector-more-btn {
|
|
2653
|
+
@apply flex h-7 w-7 items-center justify-center rounded-full bg-slate-200;
|
|
2654
|
+
}
|
|
2238
2655
|
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2656
|
+
.bcc-react-dropdown-container {
|
|
2657
|
+
@apply top-0 left-0 -z-10 w-full max-w-full;
|
|
2658
|
+
width: 296px;
|
|
2659
|
+
}
|
|
2660
|
+
.bcc-react-dropdown-container--top {
|
|
2661
|
+
@apply top-auto bottom-0 pb-0;
|
|
2662
|
+
}
|
|
2246
2663
|
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2664
|
+
.bcc-react-dropdown {
|
|
2665
|
+
@apply -z-10 flex w-full flex-wrap overflow-hidden px-1;
|
|
2666
|
+
}
|
|
2250
2667
|
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2668
|
+
.bcc-react-arrow-down-icon {
|
|
2669
|
+
@apply h-6 w-6 text-slate-600;
|
|
2670
|
+
transition: transform 0.3s ease;
|
|
2671
|
+
}
|
|
2672
|
+
.bcc-react-arrow-down-icon.open {
|
|
2673
|
+
transform: rotate(-180deg);
|
|
2674
|
+
}
|
|
2258
2675
|
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2676
|
+
.bcc-react-selector-item {
|
|
2677
|
+
@apply relative h-9 w-9 p-2 text-xl leading-none transition-transform duration-200 ease-out;
|
|
2678
|
+
}
|
|
2262
2679
|
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2680
|
+
.bcc-react-selector-item--clicked {
|
|
2681
|
+
animation: scaleFadeOut 300ms forwards;
|
|
2682
|
+
}
|
|
2266
2683
|
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2684
|
+
@keyframes scaleFadeOut {
|
|
2685
|
+
0% {
|
|
2686
|
+
transform: scale(1);
|
|
2687
|
+
opacity: 1;
|
|
2688
|
+
}
|
|
2689
|
+
100% {
|
|
2690
|
+
transform: scale(1.4);
|
|
2691
|
+
opacity: 0;
|
|
2692
|
+
}
|
|
2693
|
+
}
|
|
2277
2694
|
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2695
|
+
.bcc-react-emoji-list-item {
|
|
2696
|
+
@apply ctx clickable center h-7 min-w-7 shrink-0 rounded-full p-1 text-lg leading-none drop-shadow transition-all hover:scale-105;
|
|
2697
|
+
/* Default --not-selected */
|
|
2698
|
+
@apply ctx-neutral-subtlest;
|
|
2699
|
+
}
|
|
2700
|
+
.bcc-react-emoji-list-item span {
|
|
2701
|
+
@apply leading-none;
|
|
2702
|
+
}
|
|
2703
|
+
.bcc-react-emoji-list-item.selected {
|
|
2704
|
+
@apply ctx-neutral-subtle;
|
|
2705
|
+
}
|
|
2286
2706
|
}
|
|
2287
2707
|
|
|
2288
2708
|
|
|
2289
2709
|
|
|
2290
2710
|
/* from ./BccTag/BccTag.css */
|
|
2291
|
-
|
|
2292
2711
|
@layer components {
|
|
2293
2712
|
.bcc-tag.bcc-badge {
|
|
2294
2713
|
@apply w-auto;
|
|
2295
2714
|
}
|
|
2296
2715
|
.bcc-tag.bcc-badge.md {
|
|
2297
|
-
@apply
|
|
2716
|
+
@apply body-md h-6;
|
|
2298
2717
|
}
|
|
2299
2718
|
.bcc-tag.bcc-badge.sm {
|
|
2300
|
-
@apply
|
|
2719
|
+
@apply body-sm h-5;
|
|
2301
2720
|
}
|
|
2302
2721
|
.bcc-tag.bcc-badge.lg {
|
|
2303
|
-
@apply
|
|
2722
|
+
@apply body-md h-8;
|
|
2304
2723
|
}
|
|
2305
2724
|
.bcc-tag.bcc-badge.xl {
|
|
2306
|
-
@apply
|
|
2725
|
+
@apply body-lg h-10;
|
|
2307
2726
|
}
|
|
2308
2727
|
}
|
|
2309
2728
|
|
|
2310
2729
|
|
|
2311
2730
|
|
|
2731
|
+
|
|
2312
2732
|
/* === ./components/wrapped/styles.css === */
|
|
2313
2733
|
|
|
2314
2734
|
/* from ./BccAvatar/BccAvatar.css */
|
|
2315
2735
|
@layer components {
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
.bcc-avatar.M {
|
|
2324
|
-
@apply ctx-blue-subtler;
|
|
2325
|
-
}
|
|
2326
|
-
.bcc-avatar.female,
|
|
2327
|
-
.bcc-avatar.F {
|
|
2328
|
-
@apply ctx-purple-subtler;
|
|
2329
|
-
}
|
|
2330
|
-
.bcc-avatar.male.child,
|
|
2331
|
-
.bcc-avatar.M.child {
|
|
2332
|
-
@apply ctx-teal-subtler;
|
|
2333
|
-
}
|
|
2334
|
-
.bcc-avatar.female.child,
|
|
2335
|
-
.bcc-avatar.F.child {
|
|
2336
|
-
@apply ctx-magenta-subtler;
|
|
2337
|
-
}
|
|
2338
|
-
.bcc-avatar.bordered {
|
|
2339
|
-
@apply border-2 border-ctx;
|
|
2340
|
-
}
|
|
2341
|
-
.bcc-avatar.xs {
|
|
2342
|
-
@apply size-5 text-xs;
|
|
2343
|
-
}
|
|
2344
|
-
.bcc-avatar.sm {
|
|
2345
|
-
@apply size-6 text-sm;
|
|
2346
|
-
}
|
|
2347
|
-
.bcc-avatar.md {
|
|
2348
|
-
@apply size-8 text-base;
|
|
2349
|
-
}
|
|
2350
|
-
.bcc-avatar.lg {
|
|
2351
|
-
@apply size-10 text-lg;
|
|
2352
|
-
}
|
|
2353
|
-
.bcc-avatar.xl {
|
|
2354
|
-
@apply size-12 text-xl;
|
|
2355
|
-
}
|
|
2356
|
-
.bcc-avatar.xxl {
|
|
2357
|
-
@apply size-20 text-3xl;
|
|
2358
|
-
}
|
|
2359
|
-
.bcc-avatar.xxxl {
|
|
2360
|
-
@apply size-24 text-4xl;
|
|
2361
|
-
}
|
|
2736
|
+
.bcc-avatar {
|
|
2737
|
+
--p-avatar-background: var(--ctx-background);
|
|
2738
|
+
--p-avatar-color: var(--ctx-text);
|
|
2739
|
+
--bcc-avatar-border: var(--ctx-border);
|
|
2740
|
+
--p-icon-size: var(--icon-size-sm);
|
|
2741
|
+
@apply ctx-gray-subtler shrink-0 overflow-hidden text-sm;
|
|
2742
|
+
}
|
|
2362
2743
|
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2744
|
+
.bcc-avatar.male,
|
|
2745
|
+
.bcc-avatar.M {
|
|
2746
|
+
@apply ctx-blue-subtler;
|
|
2747
|
+
}
|
|
2748
|
+
.bcc-avatar.female,
|
|
2749
|
+
.bcc-avatar.F {
|
|
2750
|
+
@apply ctx-purple-subtler;
|
|
2751
|
+
}
|
|
2752
|
+
.bcc-avatar.male.child,
|
|
2753
|
+
.bcc-avatar.M.child {
|
|
2754
|
+
@apply ctx-teal-subtler;
|
|
2755
|
+
}
|
|
2756
|
+
.bcc-avatar.female.child,
|
|
2757
|
+
.bcc-avatar.F.child {
|
|
2758
|
+
@apply ctx-magenta-subtler;
|
|
2759
|
+
}
|
|
2760
|
+
.bcc-avatar.bordered {
|
|
2761
|
+
@apply border-ctx border-2;
|
|
2762
|
+
}
|
|
2763
|
+
.bcc-avatar.xs {
|
|
2764
|
+
@apply size-5 text-xs;
|
|
2765
|
+
--p-icon-size: var(--icon-size-xs);
|
|
2766
|
+
}
|
|
2767
|
+
.bcc-avatar.sm {
|
|
2768
|
+
@apply size-6 text-xs;
|
|
2769
|
+
--p-icon-size: var(--icon-size-xs);
|
|
2770
|
+
}
|
|
2771
|
+
/* .bcc-avatar.md {
|
|
2772
|
+
same as default
|
|
2773
|
+
}*/
|
|
2774
|
+
.bcc-avatar.lg {
|
|
2775
|
+
@apply text-md size-10;
|
|
2776
|
+
--p-icon-size: var(--icon-size-md);
|
|
2777
|
+
}
|
|
2778
|
+
.bcc-avatar.xl {
|
|
2779
|
+
@apply size-12 text-xl;
|
|
2780
|
+
--p-icon-size: var(--icon-size-lg);
|
|
2781
|
+
}
|
|
2782
|
+
.bcc-avatar.xxl {
|
|
2783
|
+
@apply size-20 text-3xl;
|
|
2784
|
+
--p-icon-size: var(--icon-size-xl);
|
|
2785
|
+
}
|
|
2786
|
+
.bcc-avatar.xxxl {
|
|
2787
|
+
@apply size-24 text-4xl;
|
|
2788
|
+
--p-icon-size: var(--icon-size-xl);
|
|
2789
|
+
}
|
|
2375
2790
|
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2791
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.lg ~ .p-badge,
|
|
2792
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xl ~ .p-badge {
|
|
2793
|
+
transform: translate(40%, -40%);
|
|
2794
|
+
}
|
|
2380
2795
|
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2796
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xxxl ~ .p-badge,
|
|
2797
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xxl ~ .p-badge {
|
|
2798
|
+
transform: translate(20%, -20%);
|
|
2799
|
+
}
|
|
2385
2800
|
}
|
|
2386
2801
|
|
|
2387
2802
|
|
|
2803
|
+
|
|
2388
2804
|
/* from ./BccTabs/BccTabs.css */
|
|
2389
2805
|
@layer components {
|
|
2390
2806
|
.bcc-tabs-fill.p-tabs {
|
|
@@ -2403,6 +2819,9 @@ GUTTER FIX
|
|
|
2403
2819
|
height: 100%;
|
|
2404
2820
|
overflow: auto;
|
|
2405
2821
|
}
|
|
2822
|
+
.bcc-tabs-fluid.p-tabs {
|
|
2823
|
+
width: 100%;
|
|
2824
|
+
}
|
|
2406
2825
|
}
|
|
2407
2826
|
|
|
2408
2827
|
|
|
@@ -2425,24 +2844,30 @@ GUTTER FIX
|
|
|
2425
2844
|
|
|
2426
2845
|
|
|
2427
2846
|
|
|
2428
|
-
:root,
|
|
2847
|
+
:root,
|
|
2848
|
+
:host {
|
|
2429
2849
|
--font-sans: 'Archivo', system-ui, sans-serif;
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2850
|
+
@apply m-0 p-0 font-sans antialiased;
|
|
2851
|
+
-webkit-font-smoothing: antialiased;
|
|
2852
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2853
|
+
line-height: 1.2;
|
|
2854
|
+
font-kerning: normal;
|
|
2855
|
+
}
|
|
2433
2856
|
|
|
2857
|
+
hr {
|
|
2858
|
+
border-color: var(--color-border-default);
|
|
2434
2859
|
}
|
|
2435
2860
|
|
|
2436
2861
|
b,
|
|
2437
2862
|
strong,
|
|
2438
2863
|
.bold {
|
|
2439
|
-
|
|
2440
|
-
|
|
2864
|
+
font-weight: bold;
|
|
2865
|
+
--ctx-text: var(--ctx-text-bold);
|
|
2441
2866
|
}
|
|
2442
2867
|
|
|
2443
2868
|
/* Disable state */
|
|
2444
2869
|
:disabled,
|
|
2445
2870
|
.disabled {
|
|
2446
|
-
|
|
2447
|
-
|
|
2871
|
+
cursor: not-allowed;
|
|
2872
|
+
pointer-events: none;
|
|
2448
2873
|
}
|