@allsorter/ui-components 0.0.367 → 0.0.369

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 (124) hide show
  1. package/fesm2022/allsorter-ui-components.mjs +3497 -1972
  2. package/fesm2022/allsorter-ui-components.mjs.map +1 -1
  3. package/images/Column left.svg +5 -0
  4. package/images/Move.svg +8 -0
  5. package/images/Success.svg +5 -0
  6. package/images/Table.svg +3 -0
  7. package/images/Vector-1.svg +3 -0
  8. package/images/Vector.svg +3 -0
  9. package/images/add-teble.svg +6 -0
  10. package/images/arrow_downward.svg +3 -0
  11. package/images/calendar_year.svg +4 -0
  12. package/images/column right.svg +5 -0
  13. package/images/delete -table.svg +6 -0
  14. package/images/delete row.svg +10 -0
  15. package/images/delete-column.svg +10 -0
  16. package/images/delete.svg +3 -0
  17. package/images/drag-drop-icon.svg +8 -0
  18. package/images/edit.svg +3 -0
  19. package/images/error.svg +5 -0
  20. package/images/row bottom.svg +5 -0
  21. package/images/row top.svg +5 -0
  22. package/images/search.svg +3 -0
  23. package/images/subrole.svg +3 -0
  24. package/images/visibility_off.svg +3 -0
  25. package/images/warning.svg +5 -0
  26. package/lib/app-toolbar/app-toolbar.component.d.ts +5 -8
  27. package/lib/app-toolbar/app-toolbar.module.d.ts +4 -4
  28. package/lib/app-toolbar-right/app-toolbar-right.component.d.ts +3 -5
  29. package/lib/button/button.component.d.ts +30 -1
  30. package/lib/candidate-section/candidate-section.component.d.ts +8 -0
  31. package/lib/custom-editor/custom-editor.component.d.ts +110 -14
  32. package/lib/custom-editor/table/table.component.d.ts +5 -0
  33. package/lib/editable-form-wrapper/editable-form-wrapper.component.d.ts +48 -0
  34. package/lib/experience-section/experience-section.component.d.ts +4 -2
  35. package/lib/general-container/general-container.component.d.ts +5 -1
  36. package/lib/icon-button/icon-button.component.d.ts +16 -7
  37. package/lib/input/input.component.d.ts +41 -10
  38. package/lib/newresumeheader/newresumeheader.component.d.ts +24 -4
  39. package/lib/resume-entries/resume-entries.component.d.ts +7 -1
  40. package/lib/resume-header/resume-header.model.d.ts +11 -20
  41. package/lib/shared-popup-modal/shared-popup-modal.component.d.ts +17 -0
  42. package/lib/side-action-bar-wrapper/side-action-bar-wrapper.component.d.ts +34 -0
  43. package/lib/side-action-bar-wrapper/side-action-bar-wrapper.module.d.ts +12 -0
  44. package/lib/styles/border-radius.scss +11 -0
  45. package/lib/styles/button-mixins.scss +41 -0
  46. package/lib/styles/button.scss +117 -0
  47. package/lib/styles/colors.scss +221 -0
  48. package/lib/styles/elevation.scss +46 -0
  49. package/lib/styles/new-typography.scss +202 -0
  50. package/lib/styles/spacing.scss +39 -0
  51. package/lib/styles/typography-classes.scss +203 -0
  52. package/lib/utils/icon-utils.d.ts +51 -0
  53. package/lib/utils/image-utils.d.ts +46 -0
  54. package/package.json +15 -3
  55. package/public-api.d.ts +3 -3
  56. package/src/lib/ai-apply-bar/ai-apply-bar.component.html +43 -0
  57. package/src/lib/ai-apply-bar/ai-apply-bar.component.scss +182 -0
  58. package/src/lib/app-toolbar/app-toolbar.component.html +13 -0
  59. package/src/lib/app-toolbar/app-toolbar.component.scss +141 -0
  60. package/src/lib/app-toolbar-right/app-toolbar-right.component.html +15 -0
  61. package/src/lib/app-toolbar-right/app-toolbar-right.component.scss +294 -0
  62. package/src/lib/button/button.component.html +127 -0
  63. package/src/lib/button/button.component.scss +1235 -0
  64. package/src/lib/candidate-section/candidate-section.component.html +91 -0
  65. package/src/lib/candidate-section/candidate-section.component.scss +154 -0
  66. package/src/lib/checkbox/checkbox.component.html +24 -0
  67. package/src/lib/checkbox/checkbox.component.scss +280 -0
  68. package/src/lib/custom-editor/custom-editor.component.html +129 -0
  69. package/src/lib/custom-editor/custom-editor.component.scss +441 -0
  70. package/src/lib/custom-editor/table/table.component.html +21 -0
  71. package/src/lib/date-range/date-range.component.html +33 -0
  72. package/src/lib/date-range/date-range.component.scss +284 -0
  73. package/src/lib/editable-form-wrapper/editable-form-wrapper.component.html +12 -0
  74. package/src/lib/editable-form-wrapper/editable-form-wrapper.component.scss +227 -0
  75. package/src/lib/experience-section/experience-section.component.html +20 -0
  76. package/src/lib/experience-section/experience-section.component.scss +0 -0
  77. package/src/lib/field-placeholder/field-placeholder.component.html +17 -0
  78. package/src/lib/field-placeholder/field-placeholder.component.scss +119 -0
  79. package/src/lib/general-container/general-container.component.html +3 -0
  80. package/src/lib/general-container/general-container.component.scss +10 -0
  81. package/src/lib/icon-button/icon-button.component.html +12 -0
  82. package/src/lib/icon-button/icon-button.component.scss +77 -0
  83. package/src/lib/input/input.component.html +86 -0
  84. package/src/lib/input/input.component.scss +1337 -0
  85. package/src/lib/loader/loader.component.html +15 -0
  86. package/src/lib/loader/loader.component.scss +493 -0
  87. package/src/lib/new-typography/new-typography.component.html +10 -0
  88. package/src/lib/new-typography/new-typography.component.scss +200 -0
  89. package/src/lib/newresumeheader/newresumeheader.component.html +177 -0
  90. package/src/lib/newresumeheader/newresumeheader.component.scss +530 -0
  91. package/src/lib/radio/radio.component.html +23 -0
  92. package/src/lib/radio/radio.component.scss +253 -0
  93. package/src/lib/responsive-columns/responsive-columns.component.html +6 -0
  94. package/src/lib/responsive-columns/responsive-columns.component.scss +68 -0
  95. package/src/lib/responsive-layout/responsive-layout.component.html +1 -0
  96. package/src/lib/responsive-layout/responsive-layout.component.scss +47 -0
  97. package/src/lib/resume-entries/resume-entries.component.html +97 -0
  98. package/src/lib/resume-entries/resume-entries.component.scss +341 -0
  99. package/src/lib/resume-header/resume-header.component.html +167 -0
  100. package/src/lib/shared-popup-modal/shared-popup-modal.component.html +99 -0
  101. package/src/lib/shared-popup-modal/shared-popup-modal.component.scss +223 -0
  102. package/src/lib/side-action-bar-wrapper/side-action-bar-wrapper.component.html +17 -0
  103. package/src/lib/side-action-bar-wrapper/side-action-bar-wrapper.component.scss +58 -0
  104. package/src/lib/slide-toggle/slide-toggle.component.html +17 -0
  105. package/src/lib/slide-toggle/slide-toggle.component.scss +439 -0
  106. package/src/lib/storybook/testing-strip/testing-strip.component.html +12 -0
  107. package/src/lib/storybook/testing-strip/testing-strip.component.scss +1 -0
  108. package/src/lib/styles/border-radius.scss +11 -0
  109. package/src/lib/styles/button-mixins.scss +41 -0
  110. package/src/lib/styles/button.scss +117 -0
  111. package/src/lib/styles/colors.scss +221 -0
  112. package/src/lib/styles/elevation.scss +46 -0
  113. package/src/lib/styles/new-typography.scss +202 -0
  114. package/src/lib/styles/spacing.scss +39 -0
  115. package/src/lib/styles/typography-classes.scss +203 -0
  116. package/src/lib/tabs/tabs.component.html +9 -0
  117. package/src/lib/tabs/tabs.component.scss +151 -0
  118. package/src/lib/toggle-buttons/toggle-buttons.component.html +17 -0
  119. package/src/lib/toggle-buttons/toggle-buttons.component.scss +284 -0
  120. package/src/lib/tooltip/tooltip.component.html +6 -0
  121. package/src/lib/tooltip/tooltip.component.scss +8 -0
  122. package/lib/action-bar-wrapper/action-bar-wrapper.component.d.ts +0 -36
  123. package/lib/resume-header/resume-header.component.d.ts +0 -69
  124. package/lib/resume-header/resume-header.module.d.ts +0 -8
@@ -0,0 +1,1235 @@
1
+ @import url("https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined");
2
+ @import "../styles/typography-classes.scss";
3
+ @import "../styles/colors.scss";
4
+ @import "../styles/border-radius.scss";
5
+ @import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=network_node");
6
+
7
+
8
+ // Override grey color for buttons to use grey-600
9
+ $color-grey: $color-grey-600;
10
+
11
+ .material-icons-outlined {
12
+ font-family: 'Material Icons Outlined';
13
+ font-weight: normal;
14
+ font-style: normal;
15
+ /* These two preserve the standard Material Icons sizing/ligatures */
16
+ font-feature-settings: 'liga';
17
+ font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24;
18
+ /* everything else can stay at Angular’s defaults */
19
+ /* Base Button Styling */
20
+ }
21
+
22
+ .mdc-button.btn {
23
+ /* Global radius as per spec */
24
+ border-radius: $radius-4;
25
+ display: flex;
26
+ align-items: center;
27
+ cursor: pointer;
28
+ border: none;
29
+ transition: background 0.2s, border 0.2s, transform 0.1s;
30
+
31
+ min-width: auto !important;
32
+ gap: 8px;
33
+ height: auto !important;
34
+ }
35
+
36
+ /* Button Categories primary*/
37
+ .mdc-button.btn-primary1 {
38
+ background-color: $color-blue;
39
+ color: white;
40
+ }
41
+
42
+ .mdc-button.btn-primary2 {
43
+ background-color: $color-green;
44
+ color: white;
45
+ }
46
+
47
+ .mdc-button.btn-secondary {
48
+ background-color: $color-grey;
49
+ color: white;
50
+ }
51
+
52
+ .mdc-button.btn-destructive {
53
+ background-color: $color-error;
54
+ color: white;
55
+ }
56
+
57
+ .mdc-button.btn-gradient {
58
+ background: $color-gradient;
59
+ color: white;
60
+ }
61
+
62
+ /* Hover States */
63
+
64
+
65
+ .mdc-button.btn-primary2:hover {
66
+ background-color: $color-green-hover !important;
67
+ }
68
+
69
+ .mdc-button.btn-primary2:active {
70
+ background-color: $color-green-active !important;
71
+ }
72
+
73
+ .mdc-button.btn-primary2:outlined {
74
+ background-color: #fff;
75
+ border-radius: $radius-4;
76
+ border: 1px solid $color-outline-green;
77
+ }
78
+
79
+ .mdc-button.btn-primary1:hover {
80
+ background-color: $color-blue-hover !important;
81
+ }
82
+
83
+ .mdc-button.btn-primary1:active {
84
+ background-color: $color-blue-active !important;
85
+ }
86
+
87
+ .mdc-button.btn-primary1:outlined {
88
+ background-color: #fff;
89
+ border-radius: $radius-4;
90
+ border: 1px solid $color-outline-blue;
91
+ }
92
+
93
+ .mdc-button.btn-secondary:hover {
94
+ background-color: $color-grey-hover !important;
95
+ }
96
+
97
+ .mdc-button.btn-secondary:active {
98
+ background-color: $color-grey-active !important;
99
+ }
100
+
101
+ .mdc-button.btn-secondary:outlined {
102
+ background-color: #fff;
103
+ border-radius: $radius-4;
104
+ border: 1px solid $color-outline-grey;
105
+ }
106
+
107
+
108
+ .mdc-button.btn-destructive:hover {
109
+ background-color: $color-error-hover !important;
110
+ }
111
+
112
+ .mdc-button.btn-destructive:active {
113
+ background-color: $color-error-active !important;
114
+ }
115
+
116
+ .mdc-button.btn-destructive:outlined {
117
+ background-color: #fff;
118
+ border-radius: $radius-4;
119
+ border: 1px solid $color-outline-error;
120
+ }
121
+
122
+ .mdc-button.btn-gradient:hover {
123
+ background: $color-gradient-hover !important;
124
+ }
125
+
126
+ .mdc-button.btn-gradient:active {
127
+ background: $color-gradient-active !important;
128
+ }
129
+
130
+
131
+
132
+
133
+ /* Pressed States (pseudo-class for active) */
134
+
135
+
136
+ /* Disabled State */
137
+ .mdc-button.btn-disabled {
138
+ border: none !important;
139
+ opacity: 0.4; // visually dim the existing button color
140
+ cursor: not-allowed;
141
+ pointer-events: none;
142
+ }
143
+
144
+ /* Color styles - Filled (default) */
145
+ .blue {
146
+ background-color: $color-blue !important;
147
+ color: #fff;
148
+ }
149
+
150
+ .blue.btn-hover,
151
+ .blue:hover {
152
+ background-color: $color-blue-hover !important;
153
+ }
154
+
155
+ .blue.btn-pressed,
156
+ .blue:active {
157
+ background-color: $color-blue-active !important;
158
+ }
159
+
160
+ .green {
161
+ background-color: $color-green !important;
162
+ color: #fff;
163
+ }
164
+
165
+ .green.btn-hover,
166
+ .green:hover {
167
+ background-color: $color-green-hover !important;
168
+ }
169
+
170
+ .green.btn-pressed,
171
+ .green:active {
172
+ background-color: $color-green-active !important;
173
+ }
174
+
175
+ .grey {
176
+ background-color: $color-grey !important;
177
+ color: #fff;
178
+ }
179
+
180
+ .grey.btn-hover,
181
+ .grey:hover {
182
+ background-color: $color-grey-hover !important;
183
+ }
184
+
185
+ .grey.btn-pressed,
186
+ .grey:active {
187
+ background-color: $color-grey-active !important;
188
+ }
189
+
190
+ .error {
191
+ background-color: $color-error !important;
192
+ color: #fff !important;
193
+ }
194
+
195
+ .error.btn-hover,
196
+ .error:hover {
197
+ background-color: $color-error-hover !important;
198
+ color: #fff !important;
199
+ }
200
+
201
+ .error.btn-pressed,
202
+ .error:active {
203
+ background-color: $color-error-active !important;
204
+ color: #fff !important;
205
+ }
206
+
207
+ .success {
208
+ background-color: $color-success !important;
209
+ color: #fff !important;
210
+ }
211
+
212
+ .success.btn-hover,
213
+ .success:hover {
214
+ background-color: $color-success-hover !important;
215
+ color: #fff !important;
216
+ }
217
+
218
+ .success.btn-pressed,
219
+ .success:active {
220
+ background-color: $color-success-active !important;
221
+ color: #fff !important;
222
+ }
223
+
224
+ .gradient {
225
+ background: linear-gradient(275deg, $color-blue -36.22%, $color-green 100.04%);
226
+ color: #fff !important;
227
+ }
228
+
229
+ .gradient.btn-hover,
230
+ .gradient:hover {
231
+ opacity: 0.9;
232
+ }
233
+
234
+ .gradient.btn-pressed,
235
+ .gradient:active {
236
+ opacity: 0.8;
237
+ }
238
+
239
+ .white {
240
+ background-color: #fff !important;
241
+ color: $color-grey-800 !important;
242
+ }
243
+
244
+ .white.btn-hover,
245
+ .white:hover {
246
+ background-color: $color-grey-100 !important;
247
+ }
248
+
249
+ .white.btn-pressed,
250
+ .white:active {
251
+ background-color: $color-grey-200 !important;
252
+ }
253
+
254
+ /* Outline styles - Applied when btn-outlined class is present */
255
+ .blue.btn-outlined {
256
+ background-color: #fff !important;
257
+ color: $color-outline-blue !important;
258
+ box-shadow: inset 0 0 0 1px $color-outline-blue !important;
259
+ }
260
+
261
+ .blue.btn-outlined.btn-hover,
262
+ .blue.btn-outlined:hover {
263
+ background-color: $color-blue-hover !important;
264
+ color: #fff !important;
265
+ box-shadow: inset 0 0 0 0px transparent !important;
266
+ }
267
+
268
+ .blue.btn-outlined.btn-pressed,
269
+ .blue.btn-outlined:active {
270
+ background-color: $color-blue-active !important;
271
+ color: #fff !important;
272
+ box-shadow: inset 0 0 0 0px transparent !important;
273
+ }
274
+
275
+ .green.btn-outlined {
276
+ background-color: #fff !important;
277
+ color: $color-outline-green !important;
278
+ box-shadow: inset 0 0 0 1px $color-outline-green !important;
279
+ }
280
+
281
+ .green.btn-outlined.btn-hover,
282
+ .green.btn-outlined:hover {
283
+ background-color: $color-green-hover !important;
284
+ color: #fff !important;
285
+ box-shadow: inset 0 0 0 0px transparent !important;
286
+ }
287
+
288
+ .green.btn-outlined.btn-pressed,
289
+ .green.btn-outlined:active {
290
+ background-color: $color-green-active !important;
291
+ color: #fff !important;
292
+ box-shadow: inset 0 0 0 0px transparent !important;
293
+ }
294
+
295
+ .grey.btn-outlined {
296
+ background-color: #fff !important;
297
+ color: $color-outline-grey !important;
298
+ box-shadow: inset 0 0 0 1px $color-outline-grey !important;
299
+ }
300
+
301
+ .grey.btn-outlined.btn-hover,
302
+ .grey.btn-outlined:hover {
303
+ background-color: $color-grey-hover !important;
304
+ color: #fff !important;
305
+ box-shadow: inset 0 0 0 0px transparent !important;
306
+ }
307
+
308
+ .grey.btn-outlined.btn-pressed,
309
+ .grey.btn-outlined:active {
310
+ background-color: $color-grey-active !important;
311
+ color: #fff !important;
312
+ box-shadow: inset 0 0 0 0px transparent !important;
313
+ }
314
+
315
+ .error.btn-outlined {
316
+ background-color: #fff !important;
317
+ color: $color-outline-error !important;
318
+ box-shadow: inset 0 0 0 1px $color-outline-error !important;
319
+ }
320
+
321
+ .error.btn-outlined.btn-hover,
322
+ .error.btn-outlined:hover {
323
+ background-color: $color-error-hover !important;
324
+ color: #fff !important;
325
+ box-shadow: inset 0 0 0 0px transparent !important;
326
+ }
327
+
328
+ .error.btn-outlined.btn-pressed,
329
+ .error.btn-outlined:active {
330
+ background-color: $color-error-active !important;
331
+ color: #fff !important;
332
+ box-shadow: inset 0 0 0 0px transparent !important;
333
+ }
334
+
335
+ .error.btn-outlined mat-icon,
336
+ .error.btn-outlined .button-label {
337
+ color: $color-outline-error !important;
338
+ }
339
+
340
+ .error.btn-outlined:hover mat-icon,
341
+ .error.btn-outlined:hover .button-label,
342
+ .error.btn-outlined:active mat-icon,
343
+ .error.btn-outlined:active .button-label {
344
+ color: #fff !important;
345
+ }
346
+
347
+ .success.btn-outlined {
348
+ background-color: #fff !important;
349
+ color: $color-outline-success !important;
350
+ box-shadow: inset 0 0 0 1px $color-outline-success !important;
351
+ }
352
+
353
+ .success.btn-outlined.btn-hover,
354
+ .success.btn-outlined:hover {
355
+ background-color: $color-success-hover !important;
356
+ color: #fff !important;
357
+ box-shadow: inset 0 0 0 0px transparent !important;
358
+ }
359
+
360
+ .success.btn-outlined.btn-pressed,
361
+ .success.btn-outlined:active {
362
+ background-color: $color-success-active !important;
363
+ color: #fff !important;
364
+ box-shadow: inset 0 0 0 0px transparent !important;
365
+ }
366
+
367
+ .success.btn-outlined mat-icon,
368
+ .success.btn-outlined .button-label {
369
+ color: $color-outline-success !important;
370
+ }
371
+
372
+ .success.btn-outlined:hover mat-icon,
373
+ .success.btn-outlined:hover .button-label,
374
+ .success.btn-outlined:active mat-icon,
375
+ .success.btn-outlined:active .button-label {
376
+ color: #fff !important;
377
+ }
378
+
379
+ .white.btn-outlined {
380
+ background-color: transparent !important;
381
+ color: $color-outline-white !important;
382
+ box-shadow: inset 0 0 0 1px $color-outline-white !important;
383
+ }
384
+
385
+ .white.btn-outlined.btn-hover,
386
+ .white.btn-outlined:hover {
387
+ background-color: transparent !important;
388
+ color: $color-outline-white !important;
389
+ }
390
+
391
+ .white.btn-outlined.btn-pressed,
392
+ .white.btn-outlined:active {
393
+ background-color: transparent !important;
394
+ color: $color-outline-white !important;
395
+ }
396
+
397
+
398
+ /* Spacing between icon and label */
399
+ .btn.custom-button>*+* {
400
+ margin-left: 8px;
401
+ }
402
+
403
+ /* Fixed 20x20 icon size for label/two-icon buttons */
404
+ .two-icon-label {
405
+ padding: 4px 12px !important;
406
+ }
407
+
408
+ button.two-icon-label .mat-icon {
409
+ width: 20px !important;
410
+ height: 20px !important;
411
+ }
412
+
413
+
414
+ /* etc. */
415
+ @font-face {
416
+ font-family: 'Material Icons';
417
+ font-style: normal;
418
+ font-weight: 400;
419
+ src: url(https://fonts.gstatic.com/s/materialicons/v143/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
420
+ }
421
+
422
+ .material-icons {
423
+ font-family: 'Material Icons';
424
+ font-weight: normal;
425
+ font-style: normal;
426
+ font-size: 24px;
427
+ line-height: 1;
428
+ letter-spacing: normal;
429
+ text-transform: none;
430
+ display: inline-block;
431
+ white-space: nowrap;
432
+ word-wrap: normal;
433
+ direction: ltr;
434
+ -webkit-font-feature-settings: 'liga';
435
+ -webkit-font-smoothing: antialiased;
436
+ }
437
+
438
+ .left-icon {
439
+ order: 0;
440
+ }
441
+
442
+ .right-icon {
443
+ order: 2;
444
+ }
445
+
446
+ mat-icon.mat-icon {
447
+ margin: 0 !important;
448
+ padding: 0 !important;
449
+ display: inline-flex !important;
450
+ align-items: center !important;
451
+ justify-content: center !important;
452
+ vertical-align: middle;
453
+ }
454
+
455
+ .left-icon,
456
+ .right-icon {
457
+ display: inline-flex !important;
458
+ align-items: center !important;
459
+ justify-content: center !important;
460
+ flex-shrink: 0;
461
+ }
462
+
463
+ /* Ensure SVG icons inherit button text color for proper visibility */
464
+ .left-icon ::ng-deep svg,
465
+ .right-icon ::ng-deep svg {
466
+ fill: currentColor !important;
467
+ }
468
+
469
+ /* For white buttons with outlined style, ensure icons are visible */
470
+ .white.btn-outlined .left-icon ::ng-deep svg,
471
+ .white.btn-outlined .right-icon ::ng-deep svg {
472
+ fill: currentColor !important;
473
+ }
474
+
475
+ /* ------------------------------------------------------------------
476
+ Size utility classes
477
+ ------------------------------------------------------------------ */
478
+
479
+
480
+
481
+ /* New naming convention */
482
+ .size-header {
483
+ font-size: 20px;
484
+ padding: 4px 12px !important;
485
+ }
486
+
487
+ .size-xs {
488
+ font-size: 12px;
489
+ padding: 8px 12px !important;
490
+ }
491
+
492
+ .size-sm {
493
+ font-size: 14px;
494
+ padding: 8px 12px !important;
495
+ }
496
+
497
+ .size-base {
498
+ font-size: 14px;
499
+ padding: 10px 16px !important;
500
+ }
501
+
502
+ .size-l {
503
+ font-size: 16px;
504
+ padding: 12px 20px !important;
505
+ }
506
+
507
+ .size-xl {
508
+ font-size: 16px;
509
+ padding: 14px 24px !important;
510
+ }
511
+
512
+ /* Reuse .size-xl for xl */
513
+
514
+ /* Icon sizes for new naming */
515
+ .size-header .mat-icon {
516
+ font-size: 20px;
517
+ height: 20px;
518
+ width: 20px;
519
+ display: inline-flex !important;
520
+ align-items: center !important;
521
+ justify-content: center !important;
522
+ }
523
+
524
+ .size-header .mat-icon ::ng-deep svg {
525
+ width: 20px !important;
526
+ height: 20px !important;
527
+ }
528
+
529
+ .size-xs .mat-icon {
530
+ font-size: 16px;
531
+ height: 16px;
532
+ width: 16px;
533
+ }
534
+
535
+ .size-sm .mat-icon,
536
+ .size-base .mat-icon {
537
+ font-size: 16px;
538
+ height: 16px;
539
+ width: 16px;
540
+ }
541
+
542
+ .size-l .mat-icon {
543
+ font-size: 20px;
544
+ height: 20px;
545
+ width: 20px;
546
+ }
547
+
548
+ .size-xl .mat-icon {
549
+ font-size: 20px;
550
+ height: 20px;
551
+ width: 20px;
552
+ }
553
+
554
+ /* Adjust gap for header size */
555
+ .btn.size-header {
556
+ gap: 4px !important;
557
+ padding: 4px 12px !important;
558
+ }
559
+
560
+ /* --------------------------------------------------
561
+ Dropdown menu custom styling
562
+ -------------------------------------------------- */
563
+ ::ng-deep .custom-dropdown-menu.mat-mdc-menu-panel,
564
+ ::ng-deep .custom-dropdown-menu.mat-menu-panel {
565
+ padding: 0;
566
+ /* remove default padding */
567
+ border-radius: $radius-8;
568
+ /* rounded corners */
569
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
570
+ border: 1px solid rgba(0, 0, 0, 0.12);
571
+ }
572
+
573
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-content,
574
+ ::ng-deep .custom-dropdown-menu .mat-menu-content {
575
+ padding: 0;
576
+ }
577
+
578
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item,
579
+ ::ng-deep .custom-dropdown-menu .mat-menu-item {
580
+ font-family: Roboto, sans-serif;
581
+ font-size: 16px;
582
+ font-style: normal;
583
+ font-weight: 400;
584
+ line-height: 140%;
585
+ /* 22.4px */
586
+ letter-spacing: 0.04px;
587
+ height: 56px;
588
+ padding: 16px 24px;
589
+ color: var(--Gray-700, #414651);
590
+ transition: background 0.2s ease-in-out;
591
+ }
592
+
593
+ /* Hover state */
594
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item:hover,
595
+ ::ng-deep .custom-dropdown-menu .mat-menu-item:hover {
596
+ background: #F7F9FE !important;
597
+ }
598
+
599
+ /* Focus state */
600
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item:focus,
601
+ ::ng-deep .custom-dropdown-menu .mat-menu-item:focus,
602
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item.cdk-keyboard-focused,
603
+ ::ng-deep .custom-dropdown-menu .mat-menu-item.cdk-keyboard-focused {
604
+ background: #E5E9FC !important;
605
+ outline: none;
606
+ }
607
+
608
+ /* Active/pressed state */
609
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item:active,
610
+ ::ng-deep .custom-dropdown-menu .mat-menu-item:active {
611
+ background: #F7F9FE !important;
612
+ }
613
+
614
+ /* Selected state */
615
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item[aria-selected="true"],
616
+ ::ng-deep .custom-dropdown-menu .mat-menu-item[aria-selected="true"],
617
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item.mat-mdc-menu-item-highlighted,
618
+ ::ng-deep .custom-dropdown-menu .mat-menu-item.mat-menu-item-highlighted {
619
+ background: #F7F9FE !important;
620
+ color: #5473E8 !important;
621
+ }
622
+
623
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item[aria-selected="true"] .mat-mdc-menu-item-text,
624
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item[aria-selected="true"] span,
625
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item.mat-mdc-menu-item-highlighted .mat-mdc-menu-item-text,
626
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item.mat-mdc-menu-item-highlighted span {
627
+ color: #5473E8 !important;
628
+ }
629
+
630
+ /* subtle divider between items */
631
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item+.mat-mdc-menu-item,
632
+ ::ng-deep .custom-dropdown-menu .mat-menu-item+.mat-menu-item {
633
+ border-top: 1px solid #EAECEE;
634
+ }
635
+
636
+ /* Force white background on Angular Material menu panel */
637
+ ::ng-deep .mat-mdc-menu-panel,
638
+ ::ng-deep .mat-menu-panel,
639
+ ::ng-deep .mdc-menu-surface {
640
+ background-color: #ffffff !important;
641
+ --mdc-theme-surface: #ffffff !important;
642
+ --mdc-menu-container-color: #ffffff !important;
643
+ }
644
+
645
+ ::ng-deep .mat-mdc-menu-panel .mat-mdc-menu-content,
646
+ ::ng-deep .mat-menu-panel .mat-menu-content {
647
+ background-color: #ffffff !important;
648
+ }
649
+
650
+ /* Typography styling for mat-mdc-menu-item */
651
+ ::ng-deep .mat-mdc-menu-item,
652
+ ::ng-deep .custom-dropdown-menu .mat-mdc-menu-item {
653
+ color: var(--Gray-700, #414651) !important;
654
+ font-family: Roboto, sans-serif !important;
655
+ font-size: 16px !important;
656
+ font-style: normal !important;
657
+ font-weight: 400 !important;
658
+ line-height: 140% !important;
659
+ /* 22.4px */
660
+ letter-spacing: 0.04px !important;
661
+ --mat-menu-item-label-text-color: var(--Gray-700, #414651) !important;
662
+ --mdc-list-list-item-label-text-color: var(--Gray-700, #414651) !important;
663
+ }
664
+
665
+ ::ng-deep .mat-mdc-menu-item .mat-mdc-menu-item-text,
666
+ ::ng-deep .mat-mdc-menu-item span {
667
+ color: var(--Gray-700, #414651) !important;
668
+ font-family: Roboto, sans-serif !important;
669
+ font-size: 16px !important;
670
+ font-style: normal !important;
671
+ font-weight: 400 !important;
672
+ line-height: 140% !important;
673
+ /* 22.4px */
674
+ letter-spacing: 0.04px !important;
675
+ }
676
+
677
+ /* Ensure dropdown menu is above other elements */
678
+ .cdk-overlay-pane {
679
+ z-index: 1000 !important;
680
+ background: #fff !important;
681
+ }
682
+
683
+ ::ng-deep .mat-mdc-menu-panel,
684
+ ::ng-deep .mat-menu-panel,
685
+ ::ng-deep .mdc-menu-surface,
686
+ .cdk-overlay-pane .mat-mdc-menu-panel,
687
+ .cdk-overlay-pane .mdc-menu-surface,
688
+ .cdk-overlay-pane .mat-menu-panel {
689
+ background-color: #ffffff !important;
690
+ --mdc-theme-surface: #ffffff !important;
691
+ --mdc-menu-container-color: #fff !important;
692
+ }
693
+
694
+ /* Make sure the Material menu panel itself is white (use ::ng-deep so rules pierce view encapsulation) */
695
+
696
+
697
+ .mat-mdc-menu-panel,
698
+ .mdc-menu-surface,
699
+ .mat-menu-panel {
700
+ --mdc-theme-surface: #ffffff !important;
701
+ /* Material variable */
702
+ background-color: #ffffff !important;
703
+ }
704
+
705
+ .cdk-overlay-pane .mat-mdc-menu-panel,
706
+ .cdk-overlay-pane .mdc-menu-surface,
707
+ .cdk-overlay-pane .mat-mdc-menu-panel {
708
+ --mdc-menu-container-color: #fff !important;
709
+ }
710
+
711
+ .cdk-overlay-pane .mat-menu-panel,
712
+ .cdk-overlay-pane .mat-mdc-menu-content,
713
+ .cdk-overlay-pane .mat-menu-content {
714
+ background: #fff !important;
715
+ }
716
+
717
+
718
+ /* Icon size helper */
719
+
720
+
721
+ /* --------------------------------------------------
722
+ Button types
723
+ -------------------------------------------------- */
724
+ button.icon-circle {
725
+ width: auto !important;
726
+ height: auto !important;
727
+ border-radius: 50% !important;
728
+ aspect-ratio: 1 / 1;
729
+ display: inline-flex;
730
+ align-items: center;
731
+ justify-content: center;
732
+ vertical-align: middle;
733
+ line-height: 0 !important; // Remove extra vertical space inside circular button
734
+ padding: 0 !important;
735
+ min-width: 0 !important;
736
+ justify-content: center;
737
+ padding: 6px !important;
738
+ }
739
+
740
+ .size-small.icon-circle {
741
+ padding: 4px !important;
742
+ }
743
+
744
+ .size-medium.icon-circle {
745
+ padding: 8px !important;
746
+ }
747
+
748
+ .size-base.icon-circle {
749
+ padding: 10px !important;
750
+ }
751
+
752
+ .size-large.icon-circle {
753
+ padding: 12px !important;
754
+ }
755
+
756
+ .size-xl.icon-circle {
757
+ padding: 14px !important;
758
+ }
759
+
760
+ /* Circle button size overrides */
761
+ .size-header.icon-circle {
762
+ padding: 4px !important;
763
+ }
764
+
765
+ .size-header.icon-circle .mat-icon {
766
+ width: 10px;
767
+ height: 10px;
768
+ font-size: 10px;
769
+ }
770
+
771
+ .size-xs.icon-circle {
772
+ padding: 4px !important;
773
+ }
774
+
775
+ .size-xs.icon-circle .mat-icon {
776
+ width: 16px;
777
+ height: 16px;
778
+ font-size: 16px;
779
+ display: flex;
780
+ align-items: center;
781
+ justify-content: center;
782
+
783
+ ::ng-deep svg {
784
+ width: 16px;
785
+ height: 16px;
786
+ }
787
+ }
788
+
789
+ .size-sm.icon-circle {
790
+ padding: 10px !important;
791
+ height: 32px !important;
792
+ width: 32px !important;
793
+ }
794
+
795
+ .size-sm.icon-circle .mat-icon {
796
+ width: 16px;
797
+ height: 16px;
798
+ font-size: 16px;
799
+ display: flex;
800
+ align-items: center;
801
+ justify-content: center;
802
+
803
+ ::ng-deep svg {
804
+ width: 16px;
805
+ height: 16px;
806
+ }
807
+ }
808
+
809
+ .size-base.icon-circle {
810
+ padding: 10px !important;
811
+ }
812
+
813
+ .size-base.icon-circle .mat-icon {
814
+ width: 16px;
815
+ height: 16px;
816
+ font-size: 16px;
817
+ display: flex;
818
+ align-items: center;
819
+ justify-content: center;
820
+
821
+ ::ng-deep svg {
822
+ width: 16px;
823
+ height: 16px;
824
+ }
825
+ }
826
+
827
+ .size-l.icon-circle {
828
+ padding: 12px !important;
829
+ }
830
+
831
+ .size-l.icon-circle .mat-icon {
832
+ width: 16px;
833
+ height: 16px;
834
+ font-size: 16px;
835
+ display: flex;
836
+ align-items: center;
837
+ justify-content: center;
838
+
839
+ ::ng-deep svg {
840
+ width: 16px;
841
+ height: 16px;
842
+ }
843
+ }
844
+
845
+ .size-xl.icon-circle {
846
+ padding: 14px !important;
847
+ }
848
+
849
+ .size-xl.icon-circle .mat-icon {
850
+ width: 20px;
851
+ height: 20px;
852
+ font-size: 20px;
853
+ }
854
+
855
+ /* icon-label and two-icon-label just rely on default flex behaviour */
856
+ .icon-xs {
857
+ /* width: 16px; height: 16px; */
858
+ padding: 4px !important;
859
+ }
860
+
861
+
862
+ /* ------------------------------------------------------------------
863
+ Color category classes (solid)
864
+ ------------------------------------------------------------------ */
865
+ .mdc-button.blue {
866
+ background-color: $color-blue;
867
+ color: #fff;
868
+ }
869
+
870
+ .mdc-button.blue:hover {
871
+ background-color: $color-blue-hover;
872
+ }
873
+
874
+ .mdc-button.blue:active {
875
+ background-color: $color-blue-active;
876
+ }
877
+
878
+ .mdc-button.green {
879
+ background-color: $color-green;
880
+ color: #fff;
881
+ }
882
+
883
+ .mdc-button.green:hover {
884
+ background-color: $color-green-hover;
885
+ }
886
+
887
+ .mdc-button.green:active {
888
+ background-color: $color-green-active;
889
+ }
890
+
891
+ .mdc-button.grey {
892
+ background-color: $color-grey;
893
+ color: #fff;
894
+ }
895
+
896
+ .mdc-button.grey:hover {
897
+ background-color: $color-grey-hover;
898
+ }
899
+
900
+ .mdc-button.grey:active {
901
+ background-color: $color-grey-active;
902
+ }
903
+
904
+ .mdc-button.error {
905
+ background-color: $color-error;
906
+ color: #fff !important;
907
+ }
908
+
909
+ .mdc-button.error:hover {
910
+ background-color: $color-error-hover;
911
+ color: #fff !important;
912
+ }
913
+
914
+ .mdc-button.error:active {
915
+ background-color: $color-error-active;
916
+ color: #fff !important;
917
+ }
918
+
919
+ .mdc-button.success {
920
+ background-color: $color-success;
921
+ color: #fff !important;
922
+ }
923
+
924
+ .mdc-button.success:hover {
925
+ background-color: $color-success-hover;
926
+ color: #fff !important;
927
+ }
928
+
929
+ .mdc-button.success:active {
930
+ background-color: $color-success-active;
931
+ color: #fff !important;
932
+ }
933
+
934
+ .mdc-button.gradient {
935
+ background: $color-gradient;
936
+ color: #fff;
937
+ }
938
+
939
+ .mdc-button.gradient:hover {
940
+ background: $color-gradient-hover;
941
+ }
942
+
943
+ .mdc-button.gradient:active {
944
+ background: $color-gradient-active;
945
+ }
946
+
947
+ .mdc-button.disabled,
948
+ .mdc-button:disabled {
949
+ opacity: 0.4; // fade existing color
950
+ cursor: not-allowed !important;
951
+ pointer-events: none;
952
+ }
953
+
954
+ /* ------------------------------------------------------------------
955
+ Outline variants
956
+ Legacy: *-no-outline (kept for back-compat)
957
+ New: *-colour-outline (height-safe via inset shadow)
958
+ ------------------------------------------------------------------- */
959
+ /* Legacy border-based outline (kept) */
960
+ .mdc-button.blue-no-outline {
961
+ background-color: #fff;
962
+ color: $color-outline-blue;
963
+ border: 1px solid $color-outline-blue;
964
+ }
965
+
966
+ .mdc-button.blue-no-outline:hover {
967
+ background-color: $color-blue-hover;
968
+ color: #fff;
969
+ }
970
+
971
+ .mdc-button.blue-no-outline:active {
972
+ background-color: $color-blue-active;
973
+ color: #fff;
974
+ }
975
+
976
+ .mdc-button.white-colour-outline {
977
+ background-color: transparent;
978
+ color: $color-outline-white;
979
+ border: 1px solid $color-outline-white;
980
+ }
981
+
982
+ .mdc-button.white-colour-outline:hover {
983
+ background-color: transparent;
984
+ color: $color-outline-white;
985
+ }
986
+
987
+ .mdc-button.white-colour-outline:active {
988
+ background-color: transparent;
989
+ color: $color-outline-white;
990
+ }
991
+
992
+
993
+ .mdc-button.green-no-outline {
994
+ background-color: #fff;
995
+ color: $color-outline-green;
996
+ border: 1px solid $color-outline-green;
997
+ }
998
+
999
+ .mdc-button.green-no-outline:hover {
1000
+ background-color: $color-green-hover;
1001
+ color: #fff;
1002
+ }
1003
+
1004
+ .mdc-button.green-no-outline:active {
1005
+ background-color: $color-green-active;
1006
+ color: #fff;
1007
+ }
1008
+
1009
+ .mdc-button.grey-no-outline {
1010
+ background-color: #fff;
1011
+ color: $color-outline-grey;
1012
+ border: 1px solid $color-outline-grey;
1013
+ }
1014
+
1015
+ .mdc-button.grey-no-outline:hover {
1016
+ background-color: $color-grey-hover;
1017
+ color: #fff;
1018
+ }
1019
+
1020
+ .mdc-button.grey-no-outline:active {
1021
+ background-color: $color-grey-active;
1022
+ color: #fff;
1023
+ }
1024
+
1025
+ .mdc-button.error-no-outline {
1026
+ background-color: #fff;
1027
+ color: $color-outline-error;
1028
+ border: 1px solid $color-outline-error;
1029
+ }
1030
+
1031
+ .mdc-button.error-no-outline:hover {
1032
+ background-color: $color-error-hover;
1033
+ color: #fff;
1034
+ }
1035
+
1036
+ .mdc-button.error-no-outline:active {
1037
+ background-color: $color-error-active;
1038
+ color: #fff;
1039
+ }
1040
+
1041
+ /* New height-safe outline using inset shadow (no size change) */
1042
+ .mdc-button.blue-colour-outline {
1043
+ background-color: #fff;
1044
+ color: $color-outline-blue;
1045
+ box-shadow: inset 0 0 0 1px $color-outline-blue;
1046
+ }
1047
+
1048
+ .mdc-button.blue-colour-outline:hover {
1049
+ background-color: $color-blue-hover;
1050
+ color: #fff;
1051
+ box-shadow: inset 0 0 0 0px transparent;
1052
+ }
1053
+
1054
+ .mdc-button.blue-colour-outline:active {
1055
+ background-color: $color-blue-active;
1056
+ color: #fff;
1057
+ box-shadow: inset 0 0 0 0px transparent;
1058
+ }
1059
+
1060
+ .mdc-button.green-colour-outline {
1061
+ background-color: #fff;
1062
+ color: $color-outline-green;
1063
+ box-shadow: inset 0 0 0 1px $color-outline-green;
1064
+ }
1065
+
1066
+ .mdc-button.green-colour-outline:hover {
1067
+ background-color: $color-green-hover;
1068
+ color: #fff;
1069
+ box-shadow: inset 0 0 0 0px transparent;
1070
+ }
1071
+
1072
+ .mdc-button.green-colour-outline:active {
1073
+ background-color: $color-green-active;
1074
+ color: #fff;
1075
+ box-shadow: inset 0 0 0 0px transparent;
1076
+ }
1077
+
1078
+ .mdc-button.grey-colour-outline {
1079
+ background-color: #fff;
1080
+ color: $color-outline-grey;
1081
+ box-shadow: inset 0 0 0 1px $color-outline-grey;
1082
+ }
1083
+
1084
+ .mdc-button.grey-colour-outline:hover {
1085
+ background-color: $color-grey-hover;
1086
+ color: #fff;
1087
+ box-shadow: inset 0 0 0 0px transparent;
1088
+ }
1089
+
1090
+ .mdc-button.grey-colour-outline:active {
1091
+ background-color: $color-grey-active;
1092
+ color: #fff;
1093
+ box-shadow: inset 0 0 0 0px transparent;
1094
+ }
1095
+
1096
+ .mdc-button.error-colour-outline {
1097
+ background-color: #fff;
1098
+ color: $color-outline-error !important;
1099
+ box-shadow: inset 0 0 0 1px $color-outline-error;
1100
+ }
1101
+
1102
+ .mdc-button.error-colour-outline:hover {
1103
+ background-color: $color-error-hover;
1104
+ color: #fff !important;
1105
+ box-shadow: inset 0 0 0 0px transparent;
1106
+ }
1107
+
1108
+ .mdc-button.error-colour-outline:active {
1109
+ background-color: $color-error-active;
1110
+ color: #fff !important;
1111
+ box-shadow: inset 0 0 0 0px transparent;
1112
+ }
1113
+
1114
+ .mdc-button.error-colour-outline mat-icon,
1115
+ .mdc-button.error-colour-outline .button-label {
1116
+ color: $color-outline-error !important;
1117
+ }
1118
+
1119
+ .mdc-button.error-colour-outline:hover mat-icon,
1120
+ .mdc-button.error-colour-outline:hover .button-label,
1121
+ .mdc-button.error-colour-outline:active mat-icon,
1122
+ .mdc-button.error-colour-outline:active .button-label {
1123
+ color: #fff !important;
1124
+ }
1125
+
1126
+ .mdc-button.success-colour-outline {
1127
+ background-color: #fff;
1128
+ color: $color-outline-success !important;
1129
+ box-shadow: inset 0 0 0 1px $color-outline-success;
1130
+ }
1131
+
1132
+ .mdc-button.success-colour-outline:hover {
1133
+ background-color: $color-success-hover;
1134
+ color: #fff !important;
1135
+ box-shadow: inset 0 0 0 0px transparent;
1136
+ }
1137
+
1138
+ .mdc-button.success-colour-outline:active {
1139
+ background-color: $color-success-active;
1140
+ color: #fff !important;
1141
+ box-shadow: inset 0 0 0 0px transparent;
1142
+ }
1143
+
1144
+ .mdc-button.success-colour-outline mat-icon,
1145
+ .mdc-button.success-colour-outline .button-label {
1146
+ color: $color-outline-success !important;
1147
+ }
1148
+
1149
+ .mdc-button.success-colour-outline:hover mat-icon,
1150
+ .mdc-button.success-colour-outline:hover .button-label,
1151
+ .mdc-button.success-colour-outline:active mat-icon,
1152
+ .mdc-button.success-colour-outline:active .button-label {
1153
+ color: #fff !important;
1154
+ }
1155
+
1156
+ /*************Button Drop down design*********/
1157
+ ::ng-deep .cdk-overlay-pane {
1158
+ border-radius: 8px !important;
1159
+ box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15) !important;
1160
+ }
1161
+
1162
+ ::ng-deep .mat-mdc-menu-panel {
1163
+ padding: 4px 0 !important;
1164
+ background-color: white !important;
1165
+ min-width: 180px !important;
1166
+ border-radius: 8px !important;
1167
+ box-shadow: none !important;
1168
+ /* handled by cdk-overlay-pane */
1169
+ }
1170
+
1171
+ ::ng-deep .mat-mdc-menu-item {
1172
+ font-family: Roboto, sans-serif;
1173
+ font-size: 16px;
1174
+ font-style: normal;
1175
+ font-weight: 400;
1176
+ line-height: 140%;
1177
+ /* 22.4px */
1178
+ letter-spacing: 0.04px;
1179
+ color: var(--Gray-700, #414651);
1180
+ padding: 12px 16px;
1181
+ border-radius: 0 !important;
1182
+ transition: background 0.2s ease-in-out;
1183
+ }
1184
+
1185
+ /* Hover state */
1186
+ ::ng-deep .mat-mdc-menu-item:hover {
1187
+ background-color: #F7F9FE !important;
1188
+ }
1189
+
1190
+ /* Focus state */
1191
+ ::ng-deep .mat-mdc-menu-item:focus,
1192
+ ::ng-deep .mat-mdc-menu-item.cdk-keyboard-focused {
1193
+ background-color: #E5E9FC !important;
1194
+ outline: none;
1195
+ }
1196
+
1197
+ /* Selected state */
1198
+ ::ng-deep .mat-mdc-menu-item[aria-selected="true"],
1199
+ ::ng-deep .mat-mdc-menu-item.mat-mdc-menu-item-highlighted {
1200
+ background-color: #F7F9FE !important;
1201
+ color: #5473E8 !important;
1202
+ }
1203
+
1204
+ ::ng-deep .mat-mdc-menu-item[aria-selected="true"] .mat-mdc-menu-item-text,
1205
+ ::ng-deep .mat-mdc-menu-item[aria-selected="true"] span,
1206
+ ::ng-deep .mat-mdc-menu-item.mat-mdc-menu-item-highlighted .mat-mdc-menu-item-text,
1207
+ ::ng-deep .mat-mdc-menu-item.mat-mdc-menu-item-highlighted span {
1208
+ color: #5473E8 !important;
1209
+ }
1210
+
1211
+ /* For header size, hide only the text label, keep icons visible */
1212
+ .size-header .button-label {
1213
+ display: none !important;
1214
+ }
1215
+
1216
+ /* Ensure icons are visible and properly displayed for header size */
1217
+ .size-header .mat-icon,
1218
+ .size-header .left-icon,
1219
+ .size-header .right-icon {
1220
+ display: inline-flex !important;
1221
+ visibility: visible !important;
1222
+ opacity: 1 !important;
1223
+ }
1224
+
1225
+ /* Ensure the Material Design button label container displays properly for header size */
1226
+ .size-header ::ng-deep .mdc-button__label {
1227
+ display: flex !important;
1228
+ align-items: center !important;
1229
+ justify-content: center !important;
1230
+ gap: 8px;
1231
+ }
1232
+
1233
+ ::ng-deep .mat-mdc-button-touch-target {
1234
+ display: none !important;
1235
+ }