@ilo-org/styles 1.2.3 → 1.3.0

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 (70) hide show
  1. package/css/components/accordion.css +1 -1
  2. package/css/components/blockquote.css +0 -0
  3. package/css/components/breadcrumb.css +1 -1
  4. package/css/components/callout.css +1 -1
  5. package/css/components/card.css +1 -1
  6. package/css/components/checkbox.css +1 -1
  7. package/css/components/contextmenu.css +1 -1
  8. package/css/components/credit.css +1 -1
  9. package/css/components/datepicker.css +1 -1
  10. package/css/components/detailcard.css +1 -1
  11. package/css/components/dropdown.css +1 -1
  12. package/css/components/featurecard.css +1 -1
  13. package/css/components/fieldset.css +1 -1
  14. package/css/components/footer.css +1 -1
  15. package/css/components/formcontrol.css +1 -1
  16. package/css/components/image.css +1 -1
  17. package/css/components/linklist.css +1 -1
  18. package/css/components/list.css +1 -1
  19. package/css/components/navigation.css +1 -1
  20. package/css/components/notification.css +1 -1
  21. package/css/components/pagination.css +1 -1
  22. package/css/components/profile.css +1 -1
  23. package/css/components/readmore.css +1 -1
  24. package/css/components/richtext.css +1 -1
  25. package/css/components/searchfield.css +1 -1
  26. package/css/components/socialmedia.css +1 -1
  27. package/css/components/table.css +1 -1
  28. package/css/components/tableofcontents.css +1 -1
  29. package/css/components/tabs.css +1 -1
  30. package/css/components/tag.css +1 -1
  31. package/css/components/tooltip.css +1 -1
  32. package/css/components/video.css +1 -1
  33. package/css/global.css +1 -1
  34. package/css/global.css.map +1 -1
  35. package/css/index.css +2 -2
  36. package/css/index.css.map +1 -1
  37. package/css/monorepo.css +2 -2
  38. package/css/monorepo.css.map +1 -1
  39. package/package.json +2 -2
  40. package/scss/_mixins.scss +7 -10
  41. package/scss/_typography.scss +0 -29
  42. package/scss/_typographymonorepo.scss +0 -29
  43. package/scss/components/_accordion.scss +3 -3
  44. package/scss/components/_blockquote.scss +112 -0
  45. package/scss/components/_breadcrumb.scss +35 -17
  46. package/scss/components/_callout.scss +7 -7
  47. package/scss/components/_checkbox.scss +2 -1
  48. package/scss/components/_contextmenu.scss +18 -24
  49. package/scss/components/_credit.scss +2 -5
  50. package/scss/components/_datepicker.scss +1 -0
  51. package/scss/components/_detailcard.scss +16 -8
  52. package/scss/components/_dropdown.scss +5 -5
  53. package/scss/components/_featurecard.scss +4 -4
  54. package/scss/components/_fieldset.scss +5 -1
  55. package/scss/components/_footer.scss +2 -68
  56. package/scss/components/_formcontrol.scss +3 -3
  57. package/scss/components/_image.scss +4 -4
  58. package/scss/components/_linklist.scss +10 -13
  59. package/scss/components/_navigation.scss +24 -24
  60. package/scss/components/_notification.scss +12 -6
  61. package/scss/components/_pagination.scss +12 -12
  62. package/scss/components/_profile.scss +11 -8
  63. package/scss/components/_readmore.scss +2 -2
  64. package/scss/components/_richtext.scss +126 -311
  65. package/scss/components/_socialmedia.scss +30 -25
  66. package/scss/components/_table.scss +2 -2
  67. package/scss/components/_tableofcontents.scss +3 -3
  68. package/scss/components/_tooltip.scss +10 -4
  69. package/scss/components/_video.scss +11 -11
  70. package/scss/theme/_foundation.scss +40 -7
@@ -22,14 +22,18 @@
22
22
  @include textmargin("margin-bottom", $gap, "label-medium", "display", 0, 0);
23
23
 
24
24
  .ilo--tooltip--wrapper {
25
- top: calc(#{spacing(1)} / 2);
25
+ top: px-to-rem(-1px);
26
26
  }
27
27
  }
28
28
 
29
29
  &--legend {
30
30
  font-family: var(--ilo-fonts-display);
31
31
  font-weight: map-get($type, "weights", "label");
32
+ display: flex;
33
+ flex-flow: row nowrap;
34
+ align-items: center;
32
35
  @include font-styles("label-medium");
36
+ line-height: px-to-rem(20px);
33
37
  }
34
38
 
35
39
  &--direction__column {
@@ -3,62 +3,6 @@
3
3
  @import "../animations";
4
4
  @import "../mixins";
5
5
 
6
- // Properties common to the footer triangle whever they appear
7
- @mixin footer-triangle-props {
8
- background-size: contain;
9
- background-repeat: no-repeat;
10
- content: "";
11
- height: 100%;
12
- min-width: 409.5px;
13
- position: absolute;
14
- width: 28.8%;
15
- z-index: 0;
16
- @include dataurlicon("footertriangle", $color-base-blue-medium);
17
- }
18
-
19
- @mixin footer-triangle($position: bottom-right) {
20
- // The triangle is placed as an after element on
21
- // the main footer element on desktop and as a before
22
- // element on mobile
23
- @if ($position == top-right) {
24
- &:after {
25
- @include footer-triangle-props;
26
- background-position: right top;
27
- bottom: auto;
28
- top: 0;
29
- right: 0;
30
- transform: scaleY(1);
31
- }
32
- }
33
-
34
- @if ($position == bottom-right) {
35
- &:before {
36
- @include footer-triangle-props;
37
- bottom: 0;
38
- right: 0;
39
- transform: scaleY(-1);
40
- }
41
- }
42
-
43
- @if ($position == top-left) {
44
- &:after {
45
- @include footer-triangle-props;
46
- top: 0;
47
- left: 0;
48
- transform: scaleY(1) scaleX(-1);
49
- }
50
- }
51
-
52
- @if ($position == bottom-left) {
53
- &:before {
54
- @include footer-triangle-props;
55
- bottom: 0;
56
- left: 0;
57
- transform: scaleY(-1) scaleX(-1);
58
- }
59
- }
60
- }
61
-
62
6
  .ilo--footer {
63
7
  $c: &;
64
8
 
@@ -72,8 +16,6 @@
72
16
  padding: spacing(10) spacing(8) spacing(12);
73
17
  position: relative;
74
18
 
75
- @include footer-triangle(bottom-right);
76
-
77
19
  &:after {
78
20
  content: "";
79
21
  border-bottom: px-to-rem(6px) solid $color-base-red-medium;
@@ -231,7 +173,7 @@
231
173
  transform: rotateX(180deg);
232
174
  transform-origin: center;
233
175
  width: px-to-rem(24px);
234
- @include dataurlicon("arrow", $color-ux-labels-actionable);
176
+ @include dataurlicon("chevron_down", $color-ux-labels-actionable);
235
177
  }
236
178
 
237
179
  &:hover {
@@ -242,7 +184,7 @@
242
184
  @include globaltransition("color, background-color, border-color");
243
185
 
244
186
  &:after {
245
- @include dataurlicon("arrow", $color-ux-labels-hover);
187
+ @include dataurlicon("chevron_down", $color-ux-labels-hover);
246
188
  }
247
189
  }
248
190
  }
@@ -296,8 +238,6 @@
296
238
  }
297
239
 
298
240
  @include breakpoint("lg") {
299
- @include footer-triangle(top-right);
300
-
301
241
  &--main {
302
242
  display: grid;
303
243
  grid-template-columns: 0.25fr 0.33fr 0.09fr 0.33fr;
@@ -377,10 +317,6 @@
377
317
 
378
318
  /* RTL Styles */
379
319
  &[dir="rtl"] & {
380
- &--main {
381
- @include footer-triangle(bottom-left);
382
- }
383
-
384
320
  .secondarylinks--list--item {
385
321
  &:before {
386
322
  content: none;
@@ -403,8 +339,6 @@
403
339
  }
404
340
 
405
341
  @include breakpoint("lg") {
406
- @include footer-triangle(top-left);
407
-
408
342
  &--main {
409
343
  grid-template-columns: 0.33fr 0.09fr 0.33fr 0.25fr;
410
344
  grid-template-areas:
@@ -169,10 +169,10 @@
169
169
  }
170
170
 
171
171
  div[class*="tooltip"] {
172
- margin-left: spacing(2);
172
+ margin-left: calc(1 * var(--ilo-spacing-base));
173
173
 
174
174
  [dir="rtl"] & {
175
- margin-right: spacing(2);
175
+ margin-right: calc(1 * var(--ilo-spacing-base));
176
176
  }
177
177
  }
178
178
  }
@@ -185,6 +185,6 @@
185
185
  }
186
186
 
187
187
  .ilo--tooltip--wrapper {
188
- bottom: calc(#{spacing(1)} / 2);
188
+ bottom: px-to-rem(1);
189
189
  }
190
190
  }
@@ -21,9 +21,9 @@
21
21
  }
22
22
 
23
23
  &--caption {
24
- border-left: px-to-rem(3px) solid $color-ux-caption-border-left;
25
- color: $color-font-caption;
26
- font-weight: 400;
24
+ border-left: var(--ilo-border-lg) solid var(--ilo-color-borders-default);
25
+ color: var(--ilo-color-gray-accessible);
26
+ font-weight: var(--ilo-font-weight-regular);
27
27
  margin-top: spacing(4);
28
28
  padding-left: spacing(2);
29
29
  @include font-styles("image-caption");
@@ -42,7 +42,7 @@
42
42
  [dir="rtl"] & {
43
43
  .ilo--image--caption {
44
44
  border-left: none;
45
- border-right: 3px solid #b8c4cc;
45
+ border-right: var(--ilo-border-lg) solid var(--ilo-color-borders-default);
46
46
  padding-left: 0;
47
47
  padding-right: spacing(2);
48
48
  }
@@ -34,7 +34,7 @@
34
34
 
35
35
  .ilo--link-list--label {
36
36
  display: block;
37
- padding-left: spacing(5);
37
+ padding-left: spacing(8);
38
38
  position: relative;
39
39
 
40
40
  &:before {
@@ -43,17 +43,14 @@
43
43
  background-size: contain;
44
44
  content: "";
45
45
  display: block;
46
- height: px-to-rem(12px);
46
+ height: px-to-rem(24px);
47
+ width: px-to-rem(24px);
47
48
  left: 0;
48
49
  position: absolute;
49
50
  top: 50%;
50
51
  transform: translateY(-50%) rotate(-90deg);
51
52
  transform-origin: center;
52
- width: px-to-rem(12px);
53
- @include dataurlicon(
54
- "equilateraltriangle",
55
- $color-base-neutrals-light
56
- );
53
+ @include dataurlicon("chevrondown", $color-base-neutrals-light);
57
54
  }
58
55
 
59
56
  [dir="rtl"] & {
@@ -71,7 +68,7 @@
71
68
  &:hover,
72
69
  &:focus {
73
70
  .ilo--link-list--label:before {
74
- @include dataurlicon("equilateraltriangle", $color-link-text-hover);
71
+ @include dataurlicon("chevrondown", $color-link-text-hover);
75
72
  }
76
73
  }
77
74
  }
@@ -91,7 +88,7 @@
91
88
  padding-bottom: spacing(4);
92
89
  padding-inline-end: spacing(8);
93
90
  text-decoration: none;
94
- @include dataurlicon("arrowright", $color-link-text-default);
91
+ @include dataurlicon("chevron_right", $color-link-text-default);
95
92
  @include globaltransition("color, background-color, border-color");
96
93
 
97
94
  &:visited {
@@ -112,7 +109,7 @@
112
109
  background-color: $color-base-blue-light;
113
110
  color: map-get($color, "link", "text", "hover");
114
111
  outline: none;
115
- @include dataurlicon("arrowright", $color-link-text-hover);
112
+ @include dataurlicon("chevron_right", $color-link-text-hover);
116
113
  @include globaltransition("color, background-color, border-color");
117
114
  }
118
115
 
@@ -135,13 +132,13 @@
135
132
 
136
133
  .ilo--link-list--label {
137
134
  &:before {
138
- @include dataurlicon("equilateraltriangle", $color-base-neutrals-white);
135
+ @include dataurlicon("chevrondown", $color-base-neutrals-white);
139
136
  }
140
137
  }
141
138
 
142
139
  .ilo--link-list--link {
143
140
  border-bottom: px-to-rem($borders-base) solid rgba(237, 240, 242, 0.4);
144
- @include dataurlicon("arrowright", $color-base-neutrals-white);
141
+ @include dataurlicon("chevron_right", $color-base-neutrals-white);
145
142
 
146
143
  .ilo--link-list--label {
147
144
  color: $color-base-neutrals-white;
@@ -166,7 +163,7 @@
166
163
  &:hover,
167
164
  &:focus {
168
165
  outline: none;
169
- @include dataurlicon("arrowright", $color-base-blue-medium);
166
+ @include dataurlicon("chevron_right", $color-base-blue-medium);
170
167
 
171
168
  .ilo--link-list--label {
172
169
  color: $color-base-blue-medium;
@@ -131,13 +131,13 @@
131
131
  display: none;
132
132
 
133
133
  &--link {
134
- @include dataurlicon("arrowleft", $brand-ilo-white);
134
+ @include dataurlicon("chevron_left", $brand-ilo-white);
135
135
  @include font-styles("language-switcher");
136
136
  appearance: none;
137
137
  background-color: inherit;
138
- background-position: 16px 50%;
138
+ background-position: px-to-rem(12px) 50%;
139
139
  background-repeat: no-repeat;
140
- background-size: 24px;
140
+ background-size: px-to-rem(24px);
141
141
  border: none;
142
142
  color: $brand-ilo-white;
143
143
  cursor: pointer;
@@ -154,19 +154,19 @@
154
154
 
155
155
  &:focus,
156
156
  &:hover {
157
- @include dataurlicon("arrowleft", $brand-ilo-blue);
157
+ @include dataurlicon("chevron_left", $brand-ilo-blue);
158
158
  background-color: $brand-ilo-light-blue;
159
159
  color: $brand-ilo-blue;
160
160
  }
161
161
 
162
162
  [dir="rtl"] {
163
- @include dataurlicon("arrowright", $brand-ilo-white);
163
+ @include dataurlicon("chevron_right", $brand-ilo-white);
164
164
  background-position: calc(100% - 16px) 50%;
165
165
  padding: 16px 36px 16px 16px;
166
166
 
167
167
  &:focus,
168
168
  &:hover {
169
- @include dataurlicon("arrowright", $brand-ilo-blue);
169
+ @include dataurlicon("chevron_right", $brand-ilo-blue);
170
170
  background-color: $brand-ilo-light-blue;
171
171
  color: $brand-ilo-blue;
172
172
  }
@@ -346,7 +346,7 @@
346
346
  }
347
347
 
348
348
  &--trigger {
349
- @include dataurlicon("arrowright", $brand-ilo-dark-blue);
349
+ @include dataurlicon("chevron_right", $brand-ilo-dark-blue);
350
350
  @include font-styles("nav-md");
351
351
 
352
352
  appearance: none;
@@ -369,13 +369,13 @@
369
369
 
370
370
  &:focus,
371
371
  &:hover {
372
- @include dataurlicon("arrowright", $brand-ilo-blue);
372
+ @include dataurlicon("chevron_right", $brand-ilo-blue);
373
373
  background-color: $brand-ilo-light-blue;
374
374
  color: $brand-ilo-blue;
375
375
  }
376
376
 
377
377
  [dir="rtl"] & {
378
- @include dataurlicon("arrowleft", $brand-ilo-dark-blue);
378
+ @include dataurlicon("chevron_left", $brand-ilo-dark-blue);
379
379
  background-color: $brand-ilo-white;
380
380
  background-position: 16px 55%;
381
381
  background-repeat: no-repeat;
@@ -384,14 +384,14 @@
384
384
 
385
385
  &:focus,
386
386
  &:hover {
387
- @include dataurlicon("arrowleft", $brand-ilo-blue);
387
+ @include dataurlicon("chevron_left", $brand-ilo-blue);
388
388
  background-color: $brand-ilo-light-blue;
389
389
  color: $brand-ilo-blue;
390
390
  }
391
391
  }
392
392
 
393
393
  @include breakpoint("lg") {
394
- @include dataurlicon("add", $brand-ilo-white);
394
+ @include dataurlicon("plus", $brand-ilo-white);
395
395
  @include font-styles("nav-bold-b-sm");
396
396
 
397
397
  background-color: $brand-ilo-dark-blue;
@@ -412,14 +412,14 @@
412
412
 
413
413
  &:focus,
414
414
  &:hover {
415
- @include dataurlicon("add", $brand-ilo-blue);
415
+ @include dataurlicon("plus", $brand-ilo-blue);
416
416
  background-color: $brand-ilo-white;
417
417
  border-color: $brand-ilo-white;
418
418
  color: $brand-ilo-blue;
419
419
  }
420
420
 
421
421
  [dir="rtl"] & {
422
- @include dataurlicon("add", $brand-ilo-white);
422
+ @include dataurlicon("plus", $brand-ilo-white);
423
423
  background-color: $brand-ilo-dark-blue;
424
424
  background-repeat: no-repeat;
425
425
  background-size: 20px;
@@ -428,7 +428,7 @@
428
428
 
429
429
  &:focus,
430
430
  &:hover {
431
- @include dataurlicon("add", $brand-ilo-blue);
431
+ @include dataurlicon("plus", $brand-ilo-blue);
432
432
  background-color: $brand-ilo-white;
433
433
  color: $brand-ilo-blue;
434
434
  }
@@ -533,14 +533,14 @@
533
533
  }
534
534
 
535
535
  &--language--switcher--button {
536
- @include dataurlicon("global", $brand-ilo-dark-blue);
536
+ @include dataurlicon("globe", $brand-ilo-dark-blue);
537
537
  @include font-styles("nav-md");
538
538
 
539
539
  appearance: none;
540
540
  background-color: $brand-ilo-white;
541
541
  background-position: calc(100% - 16px) 55%;
542
542
  background-repeat: no-repeat;
543
- background-size: 16px;
543
+ background-size: 24px;
544
544
  background-position-y: center;
545
545
  border: none;
546
546
  color: $brand-ilo-dark-blue;
@@ -556,7 +556,7 @@
556
556
 
557
557
  &:focus,
558
558
  &:hover {
559
- @include dataurlicon("global", $brand-ilo-blue);
559
+ @include dataurlicon("globe", $brand-ilo-blue);
560
560
  background-color: $brand-ilo-light-blue;
561
561
  color: $brand-ilo-blue;
562
562
  }
@@ -627,12 +627,12 @@
627
627
 
628
628
  &--button {
629
629
  @include font-styles("image-credit");
630
- @include dataurlicon("global", $brand-ilo-white);
630
+ @include dataurlicon("globe", $brand-ilo-white);
631
631
  appearance: none;
632
632
  background-color: $brand-ilo-dark-blue;
633
633
  background-repeat: no-repeat;
634
- background-position: 15px center;
635
- background-size: 16px 16px;
634
+ background-position: px-to-rem(12px) center;
635
+ background-size: px-to-rem(24px);
636
636
  border: none;
637
637
  color: $brand-ilo-white;
638
638
  cursor: pointer;
@@ -644,14 +644,14 @@
644
644
 
645
645
  &:hover,
646
646
  &:focus {
647
- @include dataurlicon("global", $brand-ilo-blue);
647
+ @include dataurlicon("globe", $brand-ilo-blue);
648
648
  background-color: $brand-ilo-light-blue;
649
649
  color: $brand-ilo-blue;
650
650
  }
651
651
 
652
652
  [dir="rtl"] & {
653
653
  padding: spacing(2) spacing(10) spacing(2) 30px;
654
- background-position: calc(100% - 15px) center;
654
+ background-position: calc(100% - px-to-rem(12px)) center;
655
655
  }
656
656
  }
657
657
 
@@ -802,7 +802,7 @@
802
802
  padding: spacing(5) spacing(8) spacing(4) spacing(4);
803
803
 
804
804
  &::before {
805
- @include dataurlicon("arrowright", $brand-ilo-dark-blue);
805
+ @include dataurlicon("chevron_right", $brand-ilo-dark-blue);
806
806
  background-position: 10% center;
807
807
  background-repeat: no-repeat;
808
808
  background-size: 24px;
@@ -825,7 +825,7 @@
825
825
 
826
826
  [dir="rtl"] & {
827
827
  &::before {
828
- @include dataurlicon("arrowright", $brand-ilo-blue);
828
+ @include dataurlicon("chevron_right", $brand-ilo-blue);
829
829
  background-position: 10% center;
830
830
  background-repeat: no-repeat;
831
831
  background-size: 24px;
@@ -53,9 +53,9 @@
53
53
  width: calc(100% - 40px);
54
54
 
55
55
  &:before {
56
- background-position: center px-to-rem(24px);
56
+ background-position: center px-to-rem(22px);
57
57
  background-repeat: no-repeat;
58
- background-size: px-to-rem(16px);
58
+ background-size: px-to-rem(24px);
59
59
  content: "";
60
60
  display: block;
61
61
  height: 100%;
@@ -72,22 +72,28 @@
72
72
 
73
73
  .icon--error & {
74
74
  background-color: $color-ux-notification-type-error;
75
- @include dataurlicon("error", $color-ux-notification-icon);
75
+ @include dataurlicon("notification_error", $color-ux-notification-icon);
76
76
  }
77
77
 
78
78
  .icon--info & {
79
79
  background-color: $color-ux-notification-type-info;
80
- @include dataurlicon("info", $color-ux-notification-icon);
80
+ @include dataurlicon("notification_info", $color-ux-notification-icon);
81
81
  }
82
82
 
83
83
  .icon--success & {
84
84
  background-color: $color-ux-notification-type-success;
85
- @include dataurlicon("success", $color-ux-notification-icon);
85
+ @include dataurlicon(
86
+ "notification_success",
87
+ $color-ux-notification-icon
88
+ );
86
89
  }
87
90
 
88
91
  .icon--warning & {
89
92
  background-color: $color-ux-notification-type-warning;
90
- @include dataurlicon("warning", $color-ux-notification-icon);
93
+ @include dataurlicon(
94
+ "notification_warning",
95
+ $color-ux-notification-icon
96
+ );
91
97
  }
92
98
  }
93
99
  }
@@ -63,7 +63,7 @@
63
63
  transform: translate(-50%, -50%) rotate(180deg);
64
64
 
65
65
  @include dataurlicon(
66
- "doublearrow",
66
+ "arrowgotoright",
67
67
  map-get($color, "ux", "pagination", "default", "icon")
68
68
  );
69
69
  }
@@ -71,7 +71,7 @@
71
71
  &:hover {
72
72
  &::before {
73
73
  @include dataurlicon(
74
- "doublearrow",
74
+ "arrowgotoright",
75
75
  map-get($color, "ux", "pagination", "hover", "icon")
76
76
  );
77
77
  }
@@ -91,7 +91,7 @@
91
91
 
92
92
  &::before {
93
93
  @include dataurlicon(
94
- "doublearrow",
94
+ "arrowgotoright",
95
95
  map-get($color, "ux", "pagination", "default", "icon")
96
96
  );
97
97
  }
@@ -105,7 +105,7 @@
105
105
  width: px-to-rem(10px);
106
106
 
107
107
  @include dataurlicon(
108
- "paginationarrow",
108
+ "caret_right",
109
109
  map-get($color, "ux", "pagination", "default", "icon")
110
110
  );
111
111
  }
@@ -113,7 +113,7 @@
113
113
  &:hover {
114
114
  &::before {
115
115
  @include dataurlicon(
116
- "paginationarrow",
116
+ "caret_right",
117
117
  map-get($color, "ux", "pagination", "hover", "icon")
118
118
  );
119
119
  }
@@ -133,7 +133,7 @@
133
133
 
134
134
  &::before {
135
135
  @include dataurlicon(
136
- "paginationarrow",
136
+ "caret_right",
137
137
  map-get($color, "ux", "pagination", "default", "icon")
138
138
  );
139
139
  }
@@ -147,7 +147,7 @@
147
147
  width: px-to-rem(10px);
148
148
 
149
149
  @include dataurlicon(
150
- "paginationarrow",
150
+ "caret_right",
151
151
  map-get($color, "ux", "pagination", "default", "icon")
152
152
  );
153
153
  }
@@ -155,7 +155,7 @@
155
155
  &:hover {
156
156
  &::before {
157
157
  @include dataurlicon(
158
- "paginationarrow",
158
+ "caret_right",
159
159
  map-get($color, "ux", "pagination", "hover", "icon")
160
160
  );
161
161
  }
@@ -175,7 +175,7 @@
175
175
 
176
176
  &::before {
177
177
  @include dataurlicon(
178
- "paginationarrow",
178
+ "caret_right",
179
179
  map-get($color, "ux", "pagination", "default", "icon")
180
180
  );
181
181
  }
@@ -186,7 +186,7 @@
186
186
  &--last-page {
187
187
  &::before {
188
188
  @include dataurlicon(
189
- "doublearrow",
189
+ "arrowgotoright",
190
190
  map-get($color, "ux", "pagination", "default", "icon")
191
191
  );
192
192
  }
@@ -194,7 +194,7 @@
194
194
  &:hover {
195
195
  &::before {
196
196
  @include dataurlicon(
197
- "doublearrow",
197
+ "arrowgotoright",
198
198
  map-get($color, "ux", "pagination", "hover", "icon")
199
199
  );
200
200
  }
@@ -214,7 +214,7 @@
214
214
 
215
215
  &::before {
216
216
  @include dataurlicon(
217
- "paginationarrow",
217
+ "caret_right",
218
218
  map-get($color, "ux", "pagination", "default", "icon")
219
219
  );
220
220
  }
@@ -86,10 +86,10 @@ $avatar-size-lg: $row-1-lg;
86
86
  width: px-to-rem(24px);
87
87
  margin-inline-start: spacing(2);
88
88
  content: "";
89
- @include dataurlicon("arrowright", $color-link-text-default);
89
+ @include dataurlicon("chevron_right", $color-link-text-default);
90
90
 
91
91
  [dir="rtl"] & {
92
- @include dataurlicon("arrowleft", $color-link-text-default);
92
+ @include dataurlicon("chevron_left", $color-link-text-default);
93
93
  }
94
94
  }
95
95
  }
@@ -101,10 +101,10 @@ $avatar-size-lg: $row-1-lg;
101
101
  outline: none;
102
102
 
103
103
  &:after {
104
- @include dataurlicon("arrowright", $color-link-text-hover);
104
+ @include dataurlicon("chevron_right", $color-link-text-hover);
105
105
 
106
106
  [dir="rtl"] & {
107
- @include dataurlicon("arrowleft", $color-link-text-hover);
107
+ @include dataurlicon("chevron_left", $color-link-text-hover);
108
108
  }
109
109
  }
110
110
  }
@@ -118,10 +118,13 @@ $avatar-size-lg: $row-1-lg;
118
118
  #{$c}--link {
119
119
  &--label {
120
120
  &:after {
121
- @include dataurlicon("arrowright", $color-base-neutrals-lighter);
121
+ @include dataurlicon("chevron_right", $color-base-neutrals-lighter);
122
122
 
123
123
  [dir="rtl"] & {
124
- @include dataurlicon("arrowleft", $color-base-neutrals-lighter);
124
+ @include dataurlicon(
125
+ "chevron_left",
126
+ $color-base-neutrals-lighter
127
+ );
125
128
  }
126
129
  }
127
130
  }
@@ -137,10 +140,10 @@ $avatar-size-lg: $row-1-lg;
137
140
  outline: none;
138
141
 
139
142
  &:after {
140
- @include dataurlicon("arrowright", $brand-ilo-turquoise);
143
+ @include dataurlicon("chevron_right", $brand-ilo-turquoise);
141
144
 
142
145
  [dir="rtl"] & {
143
- @include dataurlicon("arrowleft", $brand-ilo-turquoise);
146
+ @include dataurlicon("chevron_left", $brand-ilo-turquoise);
144
147
  }
145
148
  }
146
149
  }
@@ -29,7 +29,7 @@
29
29
  transform: translateY(-50%);
30
30
  transform-origin: center center;
31
31
  width: px-to-rem(24px);
32
- @include dataurlicon("arrow", $color-ux-labels-actionable);
32
+ @include dataurlicon("chevron_down", $color-ux-labels-actionable);
33
33
  }
34
34
 
35
35
  &:hover {
@@ -40,7 +40,7 @@
40
40
  @include globaltransition("color, background-color, border-color");
41
41
 
42
42
  &:after {
43
- @include dataurlicon("arrow", $color-ux-labels-hover);
43
+ @include dataurlicon("chevron_down", $color-ux-labels-hover);
44
44
  }
45
45
  }
46
46