@ilo-org/styles 1.2.3 → 1.3.1

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 +26 -55
  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
  }
@@ -10,10 +10,10 @@
10
10
  $self: &;
11
11
 
12
12
  &--link {
13
- background: map-get($color, "ux", "pagination", "default", "background");
13
+ background: var(--ilo-color-gray-light);
14
14
  border: none;
15
15
  border-radius: 2px;
16
- color: map-get($color, "ux", "pagination", "default", "icon");
16
+ color: var(--ilo-color-blue-dark);
17
17
  display: inline-block;
18
18
  font-family: var(--ilo-fonts-display);
19
19
  height: px-to-rem(40px);
@@ -28,31 +28,26 @@
28
28
  content: "";
29
29
  display: inline-block;
30
30
  left: 50%;
31
- height: px-to-rem(16px);
31
+ height: px-to-rem(20px);
32
32
  position: absolute;
33
33
  top: 50%;
34
34
  transform: translate(-50%, -50%);
35
35
  transform-origin: center center;
36
- width: px-to-rem(16px);
36
+ width: px-to-rem(20px);
37
37
  }
38
38
 
39
39
  &:hover {
40
- background: map-get($color, "ux", "pagination", "hover", "background");
41
- color: map-get($color, "ux", "pagination", "hover", "icon");
40
+ background: var(--ilo-color-blue-lighter);
41
+ color: var(--ilo-color-blue);
42
42
  }
43
43
 
44
44
  &.ilo--pagination--disable {
45
45
  opacity: 0.45;
46
46
  cursor: unset;
47
+ pointer-events: none;
47
48
 
48
49
  &:hover {
49
- background: map-get(
50
- $color,
51
- "ux",
52
- "pagination",
53
- "default",
54
- "background"
55
- );
50
+ background: var(--ilo-color-gray-light);
56
51
  }
57
52
  }
58
53
  }
@@ -63,7 +58,7 @@
63
58
  transform: translate(-50%, -50%) rotate(180deg);
64
59
 
65
60
  @include dataurlicon(
66
- "doublearrow",
61
+ "double_chevron_right",
67
62
  map-get($color, "ux", "pagination", "default", "icon")
68
63
  );
69
64
  }
@@ -71,7 +66,7 @@
71
66
  &:hover {
72
67
  &::before {
73
68
  @include dataurlicon(
74
- "doublearrow",
69
+ "double_chevron_right",
75
70
  map-get($color, "ux", "pagination", "hover", "icon")
76
71
  );
77
72
  }
@@ -81,17 +76,11 @@
81
76
  opacity: 0.45;
82
77
 
83
78
  &:hover {
84
- background: map-get(
85
- $color,
86
- "ux",
87
- "pagination",
88
- "default",
89
- "background"
90
- );
79
+ background: var(--ilo-color-gray-light);
91
80
 
92
81
  &::before {
93
82
  @include dataurlicon(
94
- "doublearrow",
83
+ "double_chevron_right",
95
84
  map-get($color, "ux", "pagination", "default", "icon")
96
85
  );
97
86
  }
@@ -102,10 +91,10 @@
102
91
  &--prev-page {
103
92
  &::before {
104
93
  transform: translate(-50%, -50%) rotate(180deg);
105
- width: px-to-rem(10px);
94
+ width: px-to-rem(20px);
106
95
 
107
96
  @include dataurlicon(
108
- "paginationarrow",
97
+ "chevron_right",
109
98
  map-get($color, "ux", "pagination", "default", "icon")
110
99
  );
111
100
  }
@@ -113,7 +102,7 @@
113
102
  &:hover {
114
103
  &::before {
115
104
  @include dataurlicon(
116
- "paginationarrow",
105
+ "chevron_right",
117
106
  map-get($color, "ux", "pagination", "hover", "icon")
118
107
  );
119
108
  }
@@ -123,17 +112,11 @@
123
112
  opacity: 0.45;
124
113
 
125
114
  &:hover {
126
- background: map-get(
127
- $color,
128
- "ux",
129
- "pagination",
130
- "default",
131
- "background"
132
- );
115
+ background: var(--ilo-color-gray-light);
133
116
 
134
117
  &::before {
135
118
  @include dataurlicon(
136
- "paginationarrow",
119
+ "chevron_right",
137
120
  map-get($color, "ux", "pagination", "default", "icon")
138
121
  );
139
122
  }
@@ -144,10 +127,10 @@
144
127
  &--next-page {
145
128
  &::before {
146
129
  transform: translate(-50%, -50%) rotate(0);
147
- width: px-to-rem(10px);
130
+ width: px-to-rem(20px);
148
131
 
149
132
  @include dataurlicon(
150
- "paginationarrow",
133
+ "chevron_right",
151
134
  map-get($color, "ux", "pagination", "default", "icon")
152
135
  );
153
136
  }
@@ -155,7 +138,7 @@
155
138
  &:hover {
156
139
  &::before {
157
140
  @include dataurlicon(
158
- "paginationarrow",
141
+ "chevron_right",
159
142
  map-get($color, "ux", "pagination", "hover", "icon")
160
143
  );
161
144
  }
@@ -165,17 +148,11 @@
165
148
  opacity: 0.45;
166
149
 
167
150
  &:hover {
168
- background: map-get(
169
- $color,
170
- "ux",
171
- "pagination",
172
- "default",
173
- "background"
174
- );
151
+ background: var(--ilo-color-gray-light);
175
152
 
176
153
  &::before {
177
154
  @include dataurlicon(
178
- "paginationarrow",
155
+ "chevron_right",
179
156
  map-get($color, "ux", "pagination", "default", "icon")
180
157
  );
181
158
  }
@@ -186,7 +163,7 @@
186
163
  &--last-page {
187
164
  &::before {
188
165
  @include dataurlicon(
189
- "doublearrow",
166
+ "double_chevron_right",
190
167
  map-get($color, "ux", "pagination", "default", "icon")
191
168
  );
192
169
  }
@@ -194,7 +171,7 @@
194
171
  &:hover {
195
172
  &::before {
196
173
  @include dataurlicon(
197
- "doublearrow",
174
+ "double_chevron_right",
198
175
  map-get($color, "ux", "pagination", "hover", "icon")
199
176
  );
200
177
  }
@@ -204,17 +181,11 @@
204
181
  opacity: 0.45;
205
182
 
206
183
  &:hover {
207
- background: map-get(
208
- $color,
209
- "ux",
210
- "pagination",
211
- "default",
212
- "background"
213
- );
184
+ background: var(--ilo-color-gray-light);
214
185
 
215
186
  &::before {
216
187
  @include dataurlicon(
217
- "paginationarrow",
188
+ "chevron_right",
218
189
  map-get($color, "ux", "pagination", "default", "icon")
219
190
  );
220
191
  }