@agorapulse/ui-theme 20.1.19 → 20.1.21

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.
Files changed (72) hide show
  1. package/agorapulse-ui-theme-20.1.21.tgz +0 -0
  2. package/assets/desktop_variables.css +10 -0
  3. package/assets/mobile_variables.css +10 -0
  4. package/assets/style/_tooltip.scss +6 -1
  5. package/assets/style/css-ui/_accordion.scss +54 -0
  6. package/assets/style/css-ui/_action-dropdown.scss +163 -0
  7. package/assets/style/css-ui/_avatar-group.scss +61 -0
  8. package/assets/style/css-ui/_avatar.scss +183 -0
  9. package/assets/style/css-ui/{badge.css → _badge.scss} +10 -12
  10. package/assets/style/css-ui/_button.scss +258 -0
  11. package/assets/style/css-ui/_card.scss +17 -0
  12. package/assets/style/css-ui/_checkbox.scss +164 -0
  13. package/assets/style/css-ui/_counter.scss +76 -0
  14. package/assets/style/css-ui/_datepicker.scss +307 -0
  15. package/assets/style/css-ui/_dialog.scss +74 -0
  16. package/assets/style/css-ui/_dot-stepper.scss +68 -0
  17. package/assets/style/{_helpers.scss → css-ui/_helpers.scss} +14 -13
  18. package/assets/style/css-ui/_icon-button.scss +162 -0
  19. package/assets/style/css-ui/_infobox.scss +154 -0
  20. package/assets/style/css-ui/_input.scss +129 -0
  21. package/assets/style/css-ui/_label.scss +95 -0
  22. package/assets/style/css-ui/_link.scss +86 -0
  23. package/assets/style/css-ui/_list-panel.scss +73 -0
  24. package/assets/style/css-ui/_loader.scss +173 -0
  25. package/assets/style/css-ui/_mixins.scss +50 -0
  26. package/assets/style/css-ui/_pagination.scss +177 -0
  27. package/assets/style/css-ui/_radio-card.scss +200 -0
  28. package/assets/style/css-ui/_radio.scss +107 -0
  29. package/assets/style/css-ui/{select.css → _select.scss} +290 -298
  30. package/assets/style/css-ui/_selection-dropdown.scss +183 -0
  31. package/assets/style/css-ui/_snackbar.scss +161 -0
  32. package/assets/style/css-ui/_split-button.scss +74 -0
  33. package/assets/style/css-ui/_status.scss +71 -0
  34. package/assets/style/css-ui/_stepper.scss +113 -0
  35. package/assets/style/css-ui/_table.scss +325 -0
  36. package/assets/style/css-ui/_tabs.scss +182 -0
  37. package/assets/style/css-ui/_tag.scss +169 -0
  38. package/assets/style/css-ui/_textarea.scss +121 -0
  39. package/assets/style/css-ui/_toggle.scss +132 -0
  40. package/assets/style/css-ui/_tooltip.scss +122 -0
  41. package/assets/style/{_mat-typography.scss → css-ui/_typography.scss} +34 -26
  42. package/assets/style/css-ui/font-face.css +43 -0
  43. package/assets/style/css-ui/index.css +4907 -27
  44. package/assets/style/css-ui/index.css.map +1 -0
  45. package/assets/style/css-ui/index.scss +39 -0
  46. package/assets/style/theme.scss +9 -2
  47. package/package.json +17 -2
  48. package/src/tokens/system/icon.json +33 -0
  49. package/agorapulse-ui-theme-20.1.19.tgz +0 -0
  50. package/assets/style/css-ui/action-dropdown.css +0 -172
  51. package/assets/style/css-ui/avatar.css +0 -199
  52. package/assets/style/css-ui/button.css +0 -446
  53. package/assets/style/css-ui/checkbox.css +0 -170
  54. package/assets/style/css-ui/counter.css +0 -73
  55. package/assets/style/css-ui/datepicker.css +0 -294
  56. package/assets/style/css-ui/dot-stepper.css +0 -67
  57. package/assets/style/css-ui/infobox.css +0 -163
  58. package/assets/style/css-ui/input.css +0 -119
  59. package/assets/style/css-ui/label.css +0 -67
  60. package/assets/style/css-ui/link.css +0 -92
  61. package/assets/style/css-ui/loader.css +0 -247
  62. package/assets/style/css-ui/pagination.css +0 -161
  63. package/assets/style/css-ui/radio.css +0 -109
  64. package/assets/style/css-ui/snackbar.css +0 -166
  65. package/assets/style/css-ui/status.css +0 -87
  66. package/assets/style/css-ui/stepper.css +0 -123
  67. package/assets/style/css-ui/table.css +0 -305
  68. package/assets/style/css-ui/tabs.css +0 -188
  69. package/assets/style/css-ui/tag.css +0 -171
  70. package/assets/style/css-ui/textarea.css +0 -158
  71. package/assets/style/css-ui/toggle.css +0 -161
  72. package/assets/style/css-ui/tooltip.css +0 -228
@@ -1,446 +0,0 @@
1
- /* Agorapulse Button Styles */
2
-
3
- @keyframes slide {
4
- 0% {
5
- left: calc(var(--comp-button-padding-vertical) * -1 - 50px);
6
- }
7
- 100% {
8
- left: 100%;
9
- }
10
- }
11
-
12
- .ap-button-container {
13
- display: inline-block;
14
- position: relative;
15
- }
16
-
17
- .ap-button {
18
- border: none;
19
- border-radius: var(--comp-button-border-radius);
20
- padding: var(--comp-button-padding-horizontal) var(--comp-button-padding-vertical);
21
- position: relative;
22
- overflow: hidden;
23
- display: flex;
24
- justify-content: center;
25
- align-items: center;
26
- gap: var(--comp-split-button-spacing);
27
- font-size: var(--comp-button-text-size);
28
- font-family: var(--comp-button-text-font-family);
29
- line-height: var(--comp-button-text-line-height);
30
- font-weight: var(--comp-button-text-weight);
31
- max-height: var(--comp-button-height);
32
- min-height: var(--comp-button-height);
33
- white-space: nowrap;
34
- text-overflow: ellipsis;
35
- width: 100%;
36
- }
37
-
38
- .ap-button:not(:disabled):not(.loading):hover {
39
- cursor: pointer;
40
- }
41
-
42
- .ap-button:disabled {
43
- pointer-events: none;
44
- }
45
-
46
- .ap-button.loading {
47
- pointer-events: none;
48
- }
49
-
50
- .ap-button:focus:not(:disabled):not(:active):not(.loading) {
51
- outline: 2px solid var(--ref-color-electric-blue-100);
52
- outline-offset: 1px;
53
- }
54
-
55
- .ap-button.inverse {
56
- flex-direction: row-reverse;
57
- }
58
-
59
- .ap-button-icon {
60
- width: 16px;
61
- min-width: 16px;
62
- max-width: 16px;
63
- height: 16px;
64
- min-height: 16px;
65
- max-height: 16px;
66
- }
67
-
68
- /* Primary Orange */
69
- .ap-button.primary.orange {
70
- background: var(--ref-color-orange-100);
71
- color: var(--ref-color-white);
72
- }
73
-
74
- .ap-button.primary.orange:hover:not(:disabled):not(.loading) {
75
- background-color: var(--ref-color-orange-80);
76
- }
77
-
78
- .ap-button.primary.orange:active:not(:disabled):not(.loading) {
79
- background-color: var(--ref-color-orange-60);
80
- }
81
-
82
- .ap-button.primary.orange:disabled {
83
- background-color: var(--ref-color-orange-20);
84
- }
85
-
86
- .ap-button.primary.orange.loading {
87
- background-color: var(--ref-color-orange-60);
88
- }
89
-
90
- /* Primary Blue */
91
- .ap-button.primary.blue {
92
- background: var(--ref-color-electric-blue-100);
93
- color: var(--ref-color-white);
94
- }
95
-
96
- .ap-button.primary.blue:hover:not(:disabled):not(.loading) {
97
- background-color: var(--ref-color-electric-blue-80);
98
- }
99
-
100
- .ap-button.primary.blue:active:not(:disabled):not(.loading) {
101
- background-color: var(--ref-color-electric-blue-60);
102
- }
103
-
104
- .ap-button.primary.blue:disabled {
105
- background-color: var(--ref-color-electric-blue-20);
106
- }
107
-
108
- .ap-button.primary.blue.loading {
109
- background-color: var(--ref-color-electric-blue-60);
110
- }
111
-
112
- /* Secondary Orange */
113
- .ap-button.secondary.orange {
114
- background: var(--ref-color-orange-10);
115
- color: var(--ref-color-orange-100);
116
- }
117
-
118
- .ap-button.secondary.orange:hover:not(:disabled):not(.loading) {
119
- background-color: var(--ref-color-orange-20);
120
- }
121
-
122
- .ap-button.secondary.orange:active:not(:disabled):not(.loading) {
123
- background-color: var(--ref-color-orange-40);
124
- }
125
-
126
- .ap-button.secondary.orange:disabled {
127
- background-color: var(--ref-color-orange-10);
128
- color: var(--ref-color-orange-20);
129
- }
130
-
131
- .ap-button.secondary.orange.loading {
132
- background-color: var(--ref-color-orange-40);
133
- }
134
-
135
- /* Secondary Blue */
136
- .ap-button.secondary.blue {
137
- background: var(--ref-color-electric-blue-10);
138
- color: var(--ref-color-electric-blue-100);
139
- }
140
-
141
- .ap-button.secondary.blue:hover:not(:disabled):not(.loading) {
142
- background-color: var(--ref-color-electric-blue-20);
143
- }
144
-
145
- .ap-button.secondary.blue:active:not(:disabled):not(.loading) {
146
- background-color: var(--ref-color-electric-blue-40);
147
- }
148
-
149
- .ap-button.secondary.blue:disabled {
150
- background-color: var(--ref-color-electric-blue-10);
151
- color: var(--ref-color-electric-blue-20);
152
- }
153
-
154
- .ap-button.secondary.blue.loading {
155
- background-color: var(--ref-color-electric-blue-40);
156
- }
157
-
158
- /* Ghost Grey */
159
- .ap-button.ghost.grey {
160
- background: transparent;
161
- color: var(--ref-color-grey-80);
162
- }
163
-
164
- .ap-button.ghost.grey:hover:not(:disabled):not(.loading) {
165
- background-color: var(--ref-color-grey-05);
166
- }
167
-
168
- .ap-button.ghost.grey:active:not(:disabled):not(.loading) {
169
- background-color: var(--ref-color-grey-10);
170
- }
171
-
172
- .ap-button.ghost.grey:disabled {
173
- color: var(--ref-color-grey-20);
174
- }
175
-
176
- .ap-button.ghost.grey.loading {
177
- color: var(--ref-color-grey-40);
178
- }
179
-
180
- /* Ghost Blue */
181
- .ap-button.ghost.blue {
182
- background: transparent;
183
- color: var(--ref-color-electric-blue-100);
184
- }
185
-
186
- .ap-button.ghost.blue:hover:not(:disabled):not(.loading) {
187
- background-color: var(--ref-color-electric-blue-10);
188
- }
189
-
190
- .ap-button.ghost.blue:active:not(:disabled):not(.loading) {
191
- background-color: var(--ref-color-electric-blue-20);
192
- }
193
-
194
- .ap-button.ghost.blue:disabled {
195
- color: var(--ref-color-electric-blue-20);
196
- }
197
-
198
- .ap-button.ghost.blue.loading {
199
- color: var(--ref-color-electric-blue-40);
200
- }
201
-
202
- /* Ghost Red */
203
- .ap-button.ghost.red {
204
- background: transparent;
205
- color: var(--ref-color-red-100);
206
- }
207
-
208
- .ap-button.ghost.red:hover:not(:disabled):not(.loading) {
209
- background-color: var(--ref-color-red-10);
210
- }
211
-
212
- .ap-button.ghost.red:active:not(:disabled):not(.loading) {
213
- background-color: var(--ref-color-red-20);
214
- }
215
-
216
- .ap-button.ghost.red:disabled {
217
- color: var(--ref-color-red-20);
218
- }
219
-
220
- .ap-button.ghost.red.loading {
221
- color: var(--ref-color-red-40);
222
- }
223
-
224
- /* Ghost Green */
225
- .ap-button.ghost.green {
226
- background: transparent;
227
- color: var(--ref-color-green-100);
228
- }
229
-
230
- .ap-button.ghost.green:hover:not(:disabled):not(.loading) {
231
- background-color: var(--ref-color-green-10);
232
- }
233
-
234
- .ap-button.ghost.green:active:not(:disabled):not(.loading) {
235
- background-color: var(--ref-color-green-20);
236
- }
237
-
238
- .ap-button.ghost.green:disabled {
239
- color: var(--ref-color-green-20);
240
- }
241
-
242
- .ap-button.ghost.green.loading {
243
- color: var(--ref-color-green-40);
244
- }
245
-
246
- /* Stroked Grey */
247
- .ap-button.stroked.grey {
248
- background: var(--ref-color-white);
249
- border: 1px solid var(--ref-color-grey-20);
250
- color: var(--ref-color-grey-80);
251
- }
252
-
253
- .ap-button.stroked.grey:hover:not(:disabled):not(.loading) {
254
- border-color: var(--ref-color-grey-40);
255
- }
256
-
257
- .ap-button.stroked.grey:active:not(:disabled):not(.loading) {
258
- border-color: var(--ref-color-grey-60);
259
- }
260
-
261
- .ap-button.stroked.grey:disabled {
262
- border-color: var(--ref-color-grey-20);
263
- color: var(--ref-color-grey-20);
264
- }
265
-
266
- .ap-button.stroked.grey.loading {
267
- border-color: var(--ref-color-grey-20);
268
- color: var(--ref-color-grey-40);
269
- }
270
-
271
- /* Stroked Blue */
272
- .ap-button.stroked.blue {
273
- background: var(--ref-color-white);
274
- border: 1px solid var(--ref-color-electric-blue-60);
275
- color: var(--ref-color-electric-blue-100);
276
- }
277
-
278
- .ap-button.stroked.blue:hover:not(:disabled):not(.loading) {
279
- border-color: var(--ref-color-electric-blue-80);
280
- }
281
-
282
- .ap-button.stroked.blue:active:not(:disabled):not(.loading) {
283
- border-color: var(--ref-color-electric-blue-100);
284
- }
285
-
286
- .ap-button.stroked.blue:disabled {
287
- border-color: var(--ref-color-electric-blue-20);
288
- color: var(--ref-color-electric-blue-20);
289
- }
290
-
291
- .ap-button.stroked.blue.loading {
292
- border-color: var(--ref-color-electric-blue-20);
293
- color: var(--ref-color-electric-blue-40);
294
- }
295
-
296
- /* Stroked Red */
297
- .ap-button.stroked.red {
298
- background: var(--ref-color-white);
299
- border: 1px solid var(--ref-color-red-60);
300
- color: var(--ref-color-red-100);
301
- }
302
-
303
- .ap-button.stroked.red:hover:not(:disabled):not(.loading) {
304
- border-color: var(--ref-color-red-80);
305
- }
306
-
307
- .ap-button.stroked.red:active:not(:disabled):not(.loading) {
308
- border-color: var(--ref-color-red-100);
309
- }
310
-
311
- .ap-button.stroked.red:disabled {
312
- border-color: var(--ref-color-red-20);
313
- color: var(--ref-color-red-20);
314
- }
315
-
316
- .ap-button.stroked.red.loading {
317
- border-color: var(--ref-color-red-20);
318
- color: var(--ref-color-red-40);
319
- }
320
-
321
- /* Stroked Transparent */
322
- .ap-button.transparent {
323
- background: transparent;
324
- }
325
-
326
- /* Mermaid */
327
- .ap-button.mermaid {
328
- background: linear-gradient(90deg, #578fff 0%, #df52ff 100%);
329
- color: var(--ref-color-grey-100);
330
- position: relative;
331
- z-index: 1;
332
- }
333
-
334
- .ap-button.mermaid::after {
335
- content: '';
336
- position: absolute;
337
- top: 1px;
338
- left: 1px;
339
- right: 1px;
340
- bottom: 1px;
341
- background: var(--ref-color-white);
342
- border-radius: calc(var(--ref-border-radius-sm) - 1px);
343
- z-index: -1;
344
- pointer-events: none;
345
- }
346
-
347
- .ap-button.mermaid > * {
348
- position: relative;
349
- z-index: 1;
350
- }
351
-
352
- .ap-button.mermaid:hover:not(:disabled):not(.loading)::after {
353
- background: var(--ref-color-mermaid-10);
354
- }
355
-
356
- .ap-button.mermaid:active:not(:disabled):not(.loading)::after {
357
- background: var(--ref-color-mermaid-20);
358
- }
359
-
360
- .ap-button.mermaid:disabled {
361
- background: linear-gradient(90deg, var(--ref-color-mermaid-gradient-from40) 0%, var(--ref-color-mermaid-gradient-to40) 100%);
362
- color: var(--ref-color-grey-20);
363
- }
364
-
365
- .ap-button.mermaid.loading {
366
- background: linear-gradient(90deg, var(--ref-color-mermaid-gradient-from40) 0%, var(--ref-color-mermaid-gradient-to40) 100%);
367
- color: var(--ref-color-grey-40);
368
- }
369
-
370
- /* Locked */
371
- .ap-button.locked {
372
- background-color: var(--ref-color-purple-10);
373
- color: var(--ref-color-purple-80);
374
- }
375
-
376
- .ap-button.locked:hover:not(:disabled):not(.loading) {
377
- background-color: var(--ref-color-purple-20);
378
- }
379
-
380
- .ap-button.locked:active:not(:disabled):not(.loading) {
381
- background-color: var(--ref-color-purple-40);
382
- }
383
-
384
- /* Loading bar */
385
- .ap-loading-bar {
386
- position: absolute;
387
- bottom: 0;
388
- left: var(--comp-button-padding-vertical);
389
- width: 50px;
390
- height: 5px;
391
- border-radius: 8px;
392
- animation: slide 1.5s ease-in-out infinite;
393
- }
394
-
395
- .ap-button.primary.orange .ap-loading-bar {
396
- background-color: var(--ref-color-orange-100);
397
- }
398
-
399
- .ap-button.primary.blue .ap-loading-bar {
400
- background-color: var(--ref-color-electric-blue-100);
401
- }
402
-
403
- .ap-button.secondary.orange .ap-loading-bar {
404
- background-color: var(--ref-color-orange-100);
405
- }
406
-
407
- .ap-button.secondary.blue .ap-loading-bar {
408
- background-color: var(--ref-color-electric-blue-100);
409
- }
410
-
411
- .ap-button.ghost.grey .ap-loading-bar,
412
- .ap-button.stroked.grey .ap-loading-bar {
413
- background-color: var(--ref-color-grey-80);
414
- }
415
-
416
- .ap-button.ghost.blue .ap-loading-bar,
417
- .ap-button.stroked.blue .ap-loading-bar {
418
- background-color: var(--ref-color-electric-blue-100);
419
- }
420
-
421
- .ap-button.ghost.red .ap-loading-bar,
422
- .ap-button.stroked.red .ap-loading-bar {
423
- background-color: var(--ref-color-red-100);
424
- }
425
-
426
- .ap-button.ghost.green .ap-loading-bar {
427
- background-color: var(--ref-color-green-100);
428
- }
429
-
430
- .ap-button.mermaid .ap-loading-bar {
431
- background: linear-gradient(90deg, var(--ref-color-mermaid-gradient-from) 0%, var(--ref-color-mermaid-gradient-to) 100%);
432
- z-index: 2;
433
- }
434
-
435
- /* Locked icon */
436
- .ap-locked-symbol {
437
- position: absolute;
438
- top: -6px;
439
- right: -6px;
440
- border-radius: 100%;
441
- background: var(--ref-color-white);
442
- }
443
-
444
- .ap-locked-symbol svg {
445
- color: var(--ref-color-purple-100);
446
- }
@@ -1,170 +0,0 @@
1
- /* Agorapulse Checkbox Styles */
2
-
3
- .ap-checkbox-container {
4
- display: flex;
5
- align-items: center;
6
- gap: var(--ref-spacing-xxs);
7
- cursor: pointer;
8
- }
9
-
10
- .ap-checkbox-container:has(input:disabled) {
11
- cursor: default;
12
- }
13
-
14
- /* Label positioning */
15
- .ap-checkbox-container.label-left {
16
- flex-direction: row-reverse;
17
- }
18
-
19
- .ap-checkbox-container.full-width {
20
- justify-content: space-between;
21
- width: 100%;
22
- }
23
-
24
- /* Native checkbox input (visually hidden but accessible) */
25
- .ap-checkbox-input {
26
- position: absolute;
27
- clip: rect(0, 0, 0, 0);
28
- width: 1px;
29
- height: 1px;
30
- margin: -1px;
31
- padding: 0;
32
- border: 0;
33
- overflow: hidden;
34
- }
35
-
36
- /* Focus state */
37
- @media (hover: hover) {
38
- .ap-checkbox-input:focus:not(:disabled) ~ .ap-checkbox-box {
39
- outline: 3px solid var(--ref-color-electric-blue-100);
40
- outline-offset: 1px;
41
- }
42
- }
43
-
44
- /* Custom checkbox visual */
45
- .ap-checkbox-box {
46
- display: flex;
47
- justify-content: center;
48
- align-items: center;
49
- width: 16px;
50
- height: 16px;
51
- min-width: 16px;
52
- min-height: 16px;
53
- max-width: 16px;
54
- max-height: 16px;
55
- border-radius: var(--sys-border-radius-sm);
56
- border: 1px solid var(--ref-color-grey-60);
57
- background: var(--ref-color-white);
58
- box-sizing: border-box;
59
- flex-shrink: 0;
60
- transition: background-color 0.15s, border-color 0.15s;
61
- }
62
-
63
- /* Hover state */
64
- .ap-checkbox-container:hover:not(:has(input:disabled)) .ap-checkbox-box {
65
- border-color: var(--ref-color-grey-80);
66
- }
67
-
68
- /* Active state */
69
- .ap-checkbox-container:active:not(:has(input:disabled)) .ap-checkbox-box {
70
- border-color: var(--ref-color-grey-100);
71
- }
72
-
73
- /* Checked state */
74
- .ap-checkbox-input:checked ~ .ap-checkbox-box {
75
- background: var(--ref-color-electric-blue-100);
76
- border-color: var(--ref-color-electric-blue-100);
77
- }
78
-
79
- /* Checked hover state */
80
- .ap-checkbox-container:hover:not(:has(input:disabled)) .ap-checkbox-input:checked ~ .ap-checkbox-box {
81
- background: var(--ref-color-electric-blue-80);
82
- border-color: var(--ref-color-electric-blue-100);
83
- }
84
-
85
- /* Checked active state */
86
- .ap-checkbox-container:active:not(:has(input:disabled)) .ap-checkbox-input:checked ~ .ap-checkbox-box {
87
- background: var(--ref-color-electric-blue-60);
88
- border-color: var(--ref-color-electric-blue-100);
89
- }
90
-
91
- /* Indeterminate state */
92
- .ap-checkbox-box.indeterminate {
93
- background: var(--ref-color-electric-blue-100);
94
- border-color: var(--ref-color-electric-blue-100);
95
- }
96
-
97
- .ap-checkbox-container:hover:not(:has(input:disabled)) .ap-checkbox-box.indeterminate {
98
- background: var(--ref-color-electric-blue-80);
99
- border-color: var(--ref-color-electric-blue-100);
100
- }
101
-
102
- /* Disabled state */
103
- .ap-checkbox-input:disabled ~ .ap-checkbox-box {
104
- background: var(--ref-color-grey-10);
105
- border-color: var(--ref-color-grey-20);
106
- pointer-events: none;
107
- }
108
-
109
- .ap-checkbox-input:disabled:checked ~ .ap-checkbox-box,
110
- .ap-checkbox-box.indeterminate.disabled {
111
- background: var(--ref-color-grey-20);
112
- border-color: var(--ref-color-grey-20);
113
- }
114
-
115
- /* Error state (for form validation) */
116
- .ap-checkbox-container.error .ap-checkbox-box {
117
- border-color: var(--ref-color-red-100);
118
- }
119
-
120
- /* Checkmark icon */
121
- .ap-checkbox-icon {
122
- width: 10px;
123
- height: 10px;
124
- color: var(--ref-color-white);
125
- display: none;
126
- }
127
-
128
- .ap-checkbox-input:checked ~ .ap-checkbox-box .ap-checkbox-icon-check {
129
- display: block;
130
- }
131
-
132
- .ap-checkbox-box.indeterminate .ap-checkbox-icon-indeterminate {
133
- display: block;
134
- }
135
-
136
- /* Indeterminate line */
137
- .ap-checkbox-indeterminate-line {
138
- width: 8px;
139
- height: 1.5px;
140
- background: var(--ref-color-white);
141
- display: none;
142
- }
143
-
144
- .ap-checkbox-box.indeterminate .ap-checkbox-indeterminate-line {
145
- display: block;
146
- }
147
-
148
- /* Label styling */
149
- .ap-checkbox-label {
150
- display: flex;
151
- align-items: center;
152
- font-family: var(--comp-forms-label-font-family);
153
- font-size: var(--comp-forms-label-size);
154
- font-weight: var(--comp-forms-label-font-weight);
155
- line-height: var(--comp-forms-label-line-height);
156
- color: var(--comp-forms-label-text-color);
157
- user-select: none;
158
- }
159
-
160
- .ap-checkbox-label:empty {
161
- display: none;
162
- }
163
-
164
- .ap-checkbox-label.disabled {
165
- color: var(--ref-color-grey-60);
166
- }
167
-
168
- .ap-checkbox-label.bold {
169
- font-weight: var(--ref-font-weight-bold);
170
- }
@@ -1,73 +0,0 @@
1
- /* Agorapulse Counter Styles */
2
-
3
- .ap-counter {
4
- display: inline-flex;
5
- align-items: center;
6
- justify-content: center;
7
- width: fit-content;
8
- border-radius: var(--comp-counter-border-radius);
9
- padding: 0 2px;
10
- box-sizing: border-box;
11
- }
12
-
13
- /* Normal size (default) */
14
- .ap-counter.normal {
15
- font-weight: var(--comp-counter-text-style-font-weight);
16
- font-family: var(--comp-counter-text-style-font-family);
17
- line-height: var(--comp-counter-text-style-line-height);
18
- font-size: var(--comp-counter-text-style-size);
19
- height: var(--comp-counter-height);
20
- max-height: var(--comp-counter-height);
21
- }
22
-
23
- /* Big size */
24
- .ap-counter.big {
25
- font-weight: var(--comp-counter-big-text-style-font-weight);
26
- font-family: var(--comp-counter-big-text-style-font-family);
27
- line-height: var(--comp-counter-big-text-style-line-height);
28
- font-size: var(--comp-counter-big-text-style-size);
29
- height: var(--comp-counter-big-height);
30
- max-height: var(--comp-counter-big-height);
31
- }
32
-
33
- /* Blue color */
34
- .ap-counter.blue {
35
- color: var(--comp-counter-blue-color);
36
- }
37
-
38
- .ap-counter.blue.bg {
39
- background-color: var(--comp-counter-blue-with-background-background-color);
40
- }
41
-
42
- /* Orange color */
43
- .ap-counter.orange {
44
- color: var(--comp-counter-orange-color);
45
- }
46
-
47
- .ap-counter.orange.bg {
48
- color: var(--comp-counter-orange-with-background-color);
49
- background-color: var(--comp-counter-orange-with-background-background-color);
50
- }
51
-
52
- /* Grey color */
53
- .ap-counter.grey {
54
- color: var(--comp-counter-grey-color);
55
- }
56
-
57
- .ap-counter.grey.bg {
58
- background-color: var(--comp-counter-grey-with-background-background-color);
59
- }
60
-
61
- /* Notification style */
62
- .ap-counter.notif {
63
- padding: 0 4px;
64
- border-radius: var(--comp-counter-notif-border-radius);
65
- font-size: var(--comp-counter-text-style-size);
66
- font-weight: var(--comp-counter-text-style-font-weight);
67
- font-family: var(--comp-counter-text-style-font-family);
68
- line-height: var(--comp-counter-text-style-line-height);
69
- min-width: var(--comp-counter-notif-min-width);
70
- height: var(--comp-counter-notif-min-width);
71
- color: var(--comp-counter-notif-color);
72
- background-color: var(--comp-counter-notif-background-color);
73
- }