@digigov/css 2.0.0-b3ec0588 → 2.0.0-cbc56209

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 (62) hide show
  1. package/defaultTheme/typography.json +8 -8
  2. package/dist/base/index.css +1 -1
  3. package/dist/base.js +1 -1
  4. package/dist/components.js +1 -1
  5. package/dist/digigov.css +3 -3
  6. package/dist/utilities/index.css +1 -1
  7. package/dist/utilities.js +1 -1
  8. package/package.json +7 -3
  9. package/src/base/base.css +1 -1
  10. package/src/base/index.css +5 -5
  11. package/src/components/accordion.css +51 -51
  12. package/src/components/admin-header.css +3 -3
  13. package/src/components/admin-layout.css +8 -8
  14. package/src/components/autocomplete.css +45 -48
  15. package/src/components/back-to-top.css +3 -4
  16. package/src/components/bottom-info.css +2 -1
  17. package/src/components/breadcrumbs.css +8 -6
  18. package/src/components/button.css +41 -43
  19. package/src/components/card.css +53 -47
  20. package/src/components/checkboxes.css +20 -23
  21. package/src/components/chip.css +27 -28
  22. package/src/components/components.css +2 -2
  23. package/src/components/copy-to-clipboard.css +27 -26
  24. package/src/components/details.css +11 -9
  25. package/src/components/dev-theme.css +2 -3
  26. package/src/components/drawer.css +46 -47
  27. package/src/components/dropdown.css +26 -26
  28. package/src/components/experimental.css +12 -12
  29. package/src/components/fillable.css +4 -4
  30. package/src/components/filter.css +8 -10
  31. package/src/components/footer.css +21 -18
  32. package/src/components/form.css +27 -24
  33. package/src/components/full-page-background.css +1 -1
  34. package/src/components/header.css +7 -24
  35. package/src/components/hidden.css +6 -6
  36. package/src/components/index.css +46 -47
  37. package/src/components/kitchensink.css +33 -33
  38. package/src/components/layout.css +34 -36
  39. package/src/components/loader.css +28 -28
  40. package/src/components/masthead.css +56 -55
  41. package/src/components/misc.css +13 -15
  42. package/src/components/modal.css +10 -12
  43. package/src/components/nav.css +69 -65
  44. package/src/components/notification-banner.css +17 -16
  45. package/src/components/pagination.css +29 -30
  46. package/src/components/panel.css +8 -8
  47. package/src/components/phase-banner.css +5 -5
  48. package/src/components/radios.css +24 -21
  49. package/src/components/skiplink.css +2 -2
  50. package/src/components/stack.css +63 -63
  51. package/src/components/stepnav.css +33 -29
  52. package/src/components/summary-list.css +16 -16
  53. package/src/components/svg-icons.css +78 -77
  54. package/src/components/table.css +154 -175
  55. package/src/components/tabs.css +39 -38
  56. package/src/components/task-list.css +18 -18
  57. package/src/components/timeline.css +4 -3
  58. package/src/components/typography.css +93 -103
  59. package/src/components/warning-text.css +7 -7
  60. package/src/pages/index.js +1 -1
  61. package/src/utilities/index.css +1234 -164
  62. package/src/utilities/utilities.css +451 -42
@@ -3,36 +3,36 @@
3
3
  h-full max-h-screen min-h-screen overflow-y-scroll w-4/5 max-w-md flex flex-col
4
4
  fixed top-0 bottom-0 z-40;
5
5
  @apply shadow-thick !important;
6
- }
7
- .ds-drawer--relative-sm {
8
- @apply sm:relative sm:w-full max-h-full shadow-thick sm:shadow-none !important;
9
- }
10
- .ds-drawer--relative-md {
11
- @apply md:relative md:w-full max-h-full shadow-thick md:shadow-none !important;
12
- }
13
- .ds-drawer--relative-lg {
14
- @apply lg:relative lg:w-full max-h-full shadow-thick lg:shadow-none !important;
15
- }
16
- .ds-drawer--right {
17
- @apply right-0;
18
- }
19
- .ds-drawer--left {
20
- @apply left-0;
21
- }
22
- .ds-drawer--bg-secondary {
23
- @apply bg-base-200 border-0;
24
- @apply shadow-xl !important;
25
- }
26
- .ds-drawer--closed {
27
- @apply hidden;
28
6
  &.ds-drawer--relative-sm {
29
- @apply hidden sm:flex;
7
+ @apply sm:relative sm:w-full max-h-full shadow-thick sm:shadow-none !important;
30
8
  }
31
9
  &.ds-drawer--relative-md {
32
- @apply hidden md:flex;
10
+ @apply md:relative md:w-full max-h-full shadow-thick md:shadow-none !important;
33
11
  }
34
12
  &.ds-drawer--relative-lg {
35
- @apply hidden lg:flex;
13
+ @apply lg:relative lg:w-full max-h-full shadow-thick lg:shadow-none !important;
14
+ }
15
+ &.ds-drawer--right {
16
+ @apply right-0;
17
+ }
18
+ &.ds-drawer--left {
19
+ @apply left-0;
20
+ }
21
+ &.ds-drawer--bg-secondary {
22
+ @apply bg-base-200 border-0;
23
+ @apply shadow-xl !important;
24
+ }
25
+ &.ds-drawer--closed {
26
+ @apply hidden;
27
+ &.ds-drawer--relative-sm {
28
+ @apply hidden sm:flex;
29
+ }
30
+ &.ds-drawer--relative-md {
31
+ @apply hidden md:flex;
32
+ }
33
+ &.ds-drawer--relative-lg {
34
+ @apply hidden lg:flex;
35
+ }
36
36
  }
37
37
  }
38
38
  .ds-drawer__heading {
@@ -45,6 +45,27 @@
45
45
  /* overrides */
46
46
 
47
47
  .ds-drawer {
48
+ &.ds-drawer--relative-sm {
49
+ .ds-drawer__heading {
50
+ > .ds-close-btn {
51
+ @apply sm:hidden;
52
+ }
53
+ }
54
+ }
55
+ &.ds-drawer--relative-md {
56
+ .ds-drawer__heading {
57
+ > .ds-close-btn {
58
+ @apply md:hidden;
59
+ }
60
+ }
61
+ }
62
+ &.ds-drawer--relative-lg {
63
+ .ds-drawer__heading {
64
+ > .ds-close-btn {
65
+ @apply lg:hidden;
66
+ }
67
+ }
68
+ }
48
69
  > .ds-container {
49
70
  @apply p-0;
50
71
  }
@@ -58,25 +79,3 @@
58
79
  @apply m-0;
59
80
  }
60
81
  }
61
- .ds-drawer--relative-sm {
62
- .ds-drawer__heading {
63
- >.ds-close-btn {
64
- @apply sm:hidden;
65
- }
66
- }
67
- }
68
- .ds-drawer--relative-md {
69
- .ds-drawer__heading {
70
- >.ds-close-btn {
71
- @apply md:hidden;
72
- }
73
- }
74
- }
75
- .ds-drawer--relative-lg {
76
- .ds-drawer__heading {
77
- >.ds-close-btn {
78
- @apply lg:hidden;
79
- }
80
- }
81
- }
82
-
@@ -33,7 +33,7 @@
33
33
  .ds-dropdown__button {
34
34
  @apply w-fit print:text-base-content;
35
35
  &::marker {
36
- font-size: 0px;
36
+ font-size: 0;
37
37
  }
38
38
  }
39
39
  .ds-dropdown__button.ds-link + .ds-dropdown__content {
@@ -51,24 +51,19 @@
51
51
  box-shadow:
52
52
  0 2px 8px rgba(var(--color-base-900-rgb), 0.3),
53
53
  0 -2px 0 var(--color-base-500);
54
+ &.ds-dropdown__content--full-width {
55
+ @apply min-w-full;
56
+ }
54
57
  *:last-child {
55
58
  @apply mb-0;
56
59
  }
57
60
  }
58
- .ds-dropdown__content--full-width {
59
- @apply min-w-full;
60
- }
61
61
  }
62
62
 
63
63
  /* overrides */
64
64
 
65
65
  .ds-dropdown {
66
66
  &[open] {
67
- .ds-dropdown__button--chevron {
68
- .ds-svg-icon--chevron {
69
- @apply transform -rotate-180;
70
- }
71
- }
72
67
  .ds-dropdown__button {
73
68
  &.ds-btn-primary {
74
69
  background-color: var(--btn-primary-background-color-hover);
@@ -82,21 +77,37 @@
82
77
  background-color: var(--btn-warning-background-color-hover);
83
78
  color: var(--btn-warning-color-hover);
84
79
  }
80
+ &.ds-dropdown__button--chevron {
81
+ .ds-svg-icon--chevron {
82
+ @apply transform -rotate-180;
83
+ }
84
+ }
85
85
  }
86
86
  }
87
- .ds-dropdown__button--chevron {
88
- .ds-svg-icon--chevron {
89
- @apply transition duration-300;
87
+ &.ds-dropdown--dense,
88
+ .ds-dense & {
89
+ .ds-dropdown__content {
90
+ .ds-section-break {
91
+ @apply -mx-2 w-auto;
92
+ }
93
+ > .ds-nav__list {
94
+ @apply w-auto -mx-2 flex-col;
95
+ }
90
96
  }
91
97
  }
92
98
  .ds-dropdown__button {
99
+ &.ds-link {
100
+ @apply inline-flex gap-1 items-center;
101
+ }
102
+ &.ds-dropdown__button--chevron {
103
+ .ds-svg-icon--chevron {
104
+ @apply transition duration-300;
105
+ }
106
+ }
93
107
  .ds-svg-icon {
94
108
  @apply w-5 h-6 md:h-8;
95
109
  @apply print:hidden;
96
110
  }
97
- &.ds-link {
98
- @apply inline-flex gap-1 items-center;
99
- }
100
111
  }
101
112
  .ds-dropdown__content {
102
113
  .ds-field {
@@ -118,15 +129,4 @@
118
129
  }
119
130
  }
120
131
  }
121
- &.ds-dropdown--dense,
122
- .ds-dense & {
123
- .ds-dropdown__content {
124
- .ds-section-break {
125
- @apply -mx-2 w-auto;
126
- }
127
- > .ds-nav__list {
128
- @apply w-auto -mx-2 flex-col;
129
- }
130
- }
131
- }
132
132
  }
@@ -1,7 +1,7 @@
1
1
  .ds-floating-btn {
2
2
  @apply absolute bottom-4;
3
3
  @apply p-4 rounded-full border-0 !important;
4
- box-shadow: 0px 2px 8px rgba(var(--color-base-900-rgb), 0.3);
4
+ box-shadow: 0 2px 8px rgba(var(--color-base-900-rgb), 0.3);
5
5
  &.ds-floating-btn--right {
6
6
  @apply right-4;
7
7
  }
@@ -18,14 +18,14 @@
18
18
  &:hover {
19
19
  @apply border-base-content;
20
20
  }
21
- }
22
- .ds-option-btn--selected {
23
- @apply border-success border-4 text-success p-4 !important;
24
- .ds-option-btn__steps {
25
- @apply opacity-100;
26
- }
27
- .ds-svg-icon {
28
- fill: var(--color-success) !important;
21
+ &.ds-option-btn--selected {
22
+ @apply border-success border-4 text-success p-4 !important;
23
+ .ds-option-btn__steps {
24
+ @apply opacity-100;
25
+ }
26
+ .ds-svg-icon {
27
+ fill: var(--color-success) !important;
28
+ }
29
29
  }
30
30
  }
31
31
  .ds-option-btn__steps {
@@ -33,7 +33,7 @@
33
33
  }
34
34
  .ds-option-btn__step {
35
35
  @apply bg-base-300 w-full;
36
+ &.ds-option-btn__step--active {
37
+ @apply bg-success;
38
+ }
36
39
  }
37
- .ds-option-btn__step--active {
38
- @apply bg-success;
39
- }
@@ -3,8 +3,8 @@
3
3
  text-base-content md:text-lg leading-relaxed text-base;
4
4
  }
5
5
  .ds-labeled-text {
6
- @apply bg-base-300 w-fit inline-block px-3 mx-1 mt-px font-bold border-0 border-b-2 border-base-800;
6
+ @apply bg-base-300 w-fit inline-block px-3 mx-1 mt-px font-bold border-0 border-b-2 border-base-800;
7
+ &.ds-labeled-text--active {
8
+ @apply bg-focus;
9
+ }
7
10
  }
8
- .ds-labeled-text--active {
9
- @apply bg-focus;
10
- }
@@ -1,8 +1,6 @@
1
1
  .ds-filter {
2
2
  @apply bg-base-100 fixed top-0 right-0 bottom-0 overflow-y-scroll z-40 w-4/5;
3
3
  box-shadow: 0 0 30px rgba(var(--color-base-900-rgb), 0.9);
4
- }
5
- .ds-filter {
6
4
  &.ds-filter--position-relative-always {
7
5
  @apply block relative overflow-visible w-full shadow-none z-2 !important;
8
6
  &.ds-filter--closed {
@@ -27,20 +25,20 @@
27
25
  @apply lg:block;
28
26
  }
29
27
  }
30
- }
31
- .ds-filter--border {
32
- @apply border border-base-300 p-4;
33
- }
34
- .ds-filter--closed {
35
- @apply hidden;
28
+ &.ds-filter--border {
29
+ @apply border border-base-300 p-4;
30
+ }
31
+ &.ds-filter--closed {
32
+ @apply hidden;
33
+ }
36
34
  }
37
35
  .ds-filter__content {
38
36
  @apply flex flex-col gap-8 p-0;
39
37
  }
40
38
  .ds-filter__options--horizontal {
41
39
  @apply flex gap-4 flex-col;
42
- align-items: stretch;
43
40
  @apply md:flex-row md:flex-wrap;
41
+ align-items: stretch;
44
42
  }
45
43
  @media (min-width: 768px) {
46
44
  .ds-filter__options--horizontal {
@@ -127,8 +125,8 @@
127
125
  }
128
126
  .ds-input__search-btn {
129
127
  .ds-svg-icon--search {
130
- fill: var(--color-white);
131
128
  @apply w-7 h-7;
129
+ fill: var(--color-white);
132
130
  }
133
131
  }
134
132
  .ds-results__action-bar {
@@ -4,18 +4,18 @@
4
4
  print:py-2 print:bg-white print:border-t-2;
5
5
  }
6
6
  .ds-footer__info {
7
- @apply w-full flex flex-1 flex-wrap md:flex-nowrap items-end justify-center md:justify-between box-border ;
7
+ @apply w-full flex flex-1 flex-wrap md:flex-nowrap items-end justify-center md:justify-between box-border;
8
8
  }
9
9
  .ds-footer__info-section {
10
10
  @apply mx-2 md:mx-4 mb-6 print:mb-4;
11
- }
12
- .ds-footer__info-section--grow {
13
- @apply flex flex-grow;
11
+ &.ds-footer__info-section--grow {
12
+ @apply flex flex-grow;
13
+ }
14
14
  }
15
15
  .ds-footer__content {
16
16
  @apply w-full;
17
17
  }
18
- .ds-footer__content--logos {
18
+ .ds-footer__content__logos {
19
19
  @apply flex flex-wrap items-center mb-6 md:mb-8;
20
20
  }
21
21
  .ds-footer__logo {
@@ -27,9 +27,9 @@
27
27
  }
28
28
  .ds-footer__government-logo-inverted {
29
29
  @apply max-w-full h-auto w-52 min-w-52 hidden;
30
-
31
30
  }
32
- .ds-footer__logo, .ds-footer__government-logo {
31
+ .ds-footer__logo,
32
+ .ds-footer__government-logo {
33
33
  @apply max-w-full h-auto w-52 min-w-52 block;
34
34
  }
35
35
  .ds-footer__copyright {
@@ -40,23 +40,25 @@
40
40
  }
41
41
  }
42
42
  .ds-footer__link {
43
- @apply underline ;
43
+ @apply underline;
44
44
  &:hover {
45
45
  text-decoration-thickness: 2px;
46
46
  color: var(--color-base-800);
47
47
  }
48
48
  &:focus {
49
49
  background-color: var(--color-focus) !important;
50
- box-shadow: 0 -2px var(--color-focus), 0 4px var(--color-base-content);
51
- outline: none;
50
+ box-shadow:
51
+ 0 -2px var(--color-focus),
52
+ 0 4px var(--color-base-content);
53
+ outline: none;
52
54
  text-decoration: none;
53
55
  }
54
56
  }
55
57
  .ds-footer__navigation {
56
- @apply flex flex-wrap print:hidden;
58
+ @apply flex flex-wrap print:hidden;
57
59
  }
58
60
  .ds-footer__navigation-section {
59
- @apply inline-block mx-4 mb-8 align-top flex-grow flex-shrink
61
+ @apply inline-block mx-4 mb-8 align-top flex-grow flex-shrink
60
62
  print:hidden;
61
63
  }
62
64
  @media (min-width: 768px) {
@@ -67,11 +69,11 @@
67
69
  .ds-footer__list {
68
70
  @apply m-0 p-0 list-none gap-x-6 text-sm md:text-base
69
71
  print:hidden;
70
- }
71
- .ds-footer__list--horizontal {
72
- @apply mb-4;
73
- .ds-footer__list-item {
74
- @apply inline-block mr-4 mb-2;
72
+ &.ds-footer__list--horizontal {
73
+ @apply mb-4;
74
+ .ds-footer__list-item {
75
+ @apply inline-block mr-4 mb-2;
76
+ }
75
77
  }
76
78
  }
77
79
  @media (min-width: 768px) {
@@ -79,7 +81,8 @@
79
81
  column-count: 2;
80
82
  }
81
83
  }
82
- .ds-footer__list-item {}
84
+ .ds-footer__list-item {
85
+ }
83
86
  .ds-footer__heading {
84
87
  @apply mb-4 pb-4 border-b border-base-300;
85
88
  }
@@ -1,6 +1,11 @@
1
- .ds-form {}
1
+ .ds-form {
2
+ }
2
3
  .ds-field {
3
4
  @apply mb-8 md:mb-10;
5
+
6
+ &.ds-field--error {
7
+ @apply border-l-5 border-error px-0 pl-4;
8
+ }
4
9
  .ds-fieldset {
5
10
  > .ds-field:last-child,
6
11
  > .ds-btn:last-child {
@@ -33,18 +38,19 @@
33
38
  &:focus {
34
39
  outline: 4px solid var(--color-focus);
35
40
  outline-offset: 0;
36
- -webkit-box-shadow: inset 0 0 0 2px;
37
41
  box-shadow: inset 0 0 0 2px;
38
42
  }
39
43
  }
40
- .ds-input--dense,.ds-dense .ds-input ,
41
- .ds-textarea--dense, .ds-dense .ds-textarea ,
42
- .ds-select--dense, .ds-dense .ds-select,
43
- .ds-date-input--dense .ds-input, .ds-dense .ds-date-input .ds-input
44
- {
44
+ .ds-input--dense,
45
+ .ds-dense .ds-input,
46
+ .ds-textarea--dense,
47
+ .ds-dense .ds-textarea,
48
+ .ds-select--dense,
49
+ .ds-dense .ds-select,
50
+ .ds-date-input--dense .ds-input,
51
+ .ds-dense .ds-date-input .ds-input {
45
52
  @apply p-1;
46
53
  &:focus {
47
- -webkit-box-shadow: inset 0 0 0 1px;
48
54
  box-shadow: inset 0 0 0 1px;
49
55
  }
50
56
  }
@@ -59,7 +65,8 @@
59
65
  }
60
66
  .ds-date-input {
61
67
  @apply flex flex-wrap gap-y-2;
62
- &.ds-date-input--dense, .ds-dense & {
68
+ &.ds-date-input--dense,
69
+ .ds-dense & {
63
70
  .ds-date-input__item {
64
71
  @apply mr-2;
65
72
  }
@@ -71,7 +78,8 @@
71
78
  .ds-select {
72
79
  @apply w-auto max-w-full;
73
80
  }
74
- .ds-select__option {}
81
+ .ds-select__option {
82
+ }
75
83
  .ds-input--width-20-char {
76
84
  max-width: 41ex;
77
85
  }
@@ -91,8 +99,8 @@
91
99
  max-width: 5.4ex;
92
100
  }
93
101
  .ds-single-character-input__item {
94
- max-width: 4.4ex;
95
102
  @apply text-center px-0 mr-3;
103
+ max-width: 4.4ex;
96
104
  }
97
105
  .ds-date-input__item {
98
106
  @apply mr-4;
@@ -127,10 +135,6 @@
127
135
  }
128
136
 
129
137
  /* error handling */
130
-
131
- .ds-field--error {
132
- @apply border-l-5 border-error px-0 pl-4;
133
- }
134
138
  .ds-error-message {
135
139
  @apply md:text-lg text-base block mb-4 text-error font-semibold;
136
140
  }
@@ -139,7 +143,6 @@
139
143
  &:focus {
140
144
  outline: 4px solid var(--color-focus);
141
145
  outline-offset: 0;
142
- -webkit-box-shadow: inset 0 0 0 1px var(--color-error);
143
146
  box-shadow: inset 0 0 0 1px var(--color-error);
144
147
  }
145
148
  }
@@ -151,20 +154,20 @@
151
154
  .ds-select:disabled,
152
155
  .ds-checkboxes__input:disabled,
153
156
  .ds-checkboxes__input:disabled::before,
154
- .ds-checkboxes__input:disabled:checked:before,
157
+ .ds-checkboxes__input:disabled:checked::before,
155
158
  .ds-radios__input:disabled,
156
159
  .ds-radios__input:disabled::before,
157
- .ds-radios__input:disabled:checked:before {
160
+ .ds-radios__input:disabled:checked::before {
158
161
  @apply bg-base-300 cursor-not-allowed;
159
162
  }
160
163
  .ds-input:disabled,
161
164
  .ds-textarea:disabled,
162
165
  .ds-checkboxes__input:disabled::before,
163
166
  .ds-radios__input:disabled::before {
164
- @apply border-base-700 text-base-800;
167
+ @apply border-base-content text-base-content;
165
168
  }
166
- .ds-checkboxes__input:disabled:checked:after,
167
- .ds-radios__input:disabled:checked:after {
169
+ .ds-checkboxes__input:disabled:checked::after,
170
+ .ds-radios__input:disabled:checked::after {
168
171
  @apply opacity-40;
169
172
  }
170
173
  .ds-radios__label--disabled,
@@ -178,9 +181,6 @@
178
181
  /* overrides */
179
182
 
180
183
  .ds-form {
181
- .ds-body {
182
- @apply mb-4;
183
- }
184
184
  &.ds-grid {
185
185
  @apply grid gap-4;
186
186
  .ds-fieldset {
@@ -193,6 +193,9 @@
193
193
  @apply col-span-12;
194
194
  }
195
195
  }
196
+ .ds-body {
197
+ @apply mb-4;
198
+ }
196
199
  }
197
200
  .ds-label {
198
201
  .ds-heading-xs,
@@ -1,4 +1,4 @@
1
1
  .ds-full-page-background {
2
2
  @apply flex justify-center items-center content-center bg-opacity-50 bg-base-1000
3
3
  fixed z-10 left-0 top-0 w-full h-full;
4
- }
4
+ }
@@ -11,9 +11,9 @@
11
11
  print:gap-1;
12
12
  }
13
13
  .ds-header__logo {
14
+ @apply h-12 print:hidden;
14
15
  print-color-adjust: exact !important;
15
16
  -webkit-print-color-adjust: exact !important;
16
- @apply h-12 print:hidden;
17
17
  }
18
18
  .ds-header__logo-inverted {
19
19
  @apply h-12 hidden print:block;
@@ -22,9 +22,7 @@
22
22
  @apply h-10 print:hidden;
23
23
  }
24
24
  .ds-header__link:focus {
25
- box-shadow: 0px 0px 0px 4px var(--color-focus);
26
- -webkit-box-shadow: 0px 0px 0px 4px var(--color-focus);
27
- -moz-box-shadow: 0px 0px 0px 4px var(--color-focus);
25
+ box-shadow: 0 0 0 4px var(--color-focus);
28
26
  outline: none;
29
27
  text-decoration: none;
30
28
  }
@@ -51,7 +49,7 @@
51
49
  .ds-header__content,
52
50
  .ds-header__section {
53
51
  > .ds-link,
54
- > .ds-dropdown .ds-dropdown__button.ds-link {
52
+ > .ds-dropdown .ds-dropdown__button.ds-link {
55
53
  @apply text-white focus:text-link-active print:text-base-content;
56
54
  }
57
55
  }
@@ -62,9 +60,6 @@
62
60
  @apply sm:w-max;
63
61
  }
64
62
  .ds-link {
65
- .ds-svg-icon {
66
- fill: var(--color-white);
67
- }
68
63
  &:hover {
69
64
  .ds-svg-icon {
70
65
  fill: var(--color-white);
@@ -75,24 +70,12 @@
75
70
  fill: var(--color-link-active);
76
71
  }
77
72
  }
78
- }
79
- .ds-phase-banner__text {
80
- @apply text-white print:text-base-content;
81
- }
82
- .ds-link {
83
73
  .ds-svg-icon {
84
74
  fill: var(--color-white);
85
75
  }
86
- &:hover {
87
- .ds-svg-icon {
88
- fill: var(--color-white);
89
- }
90
- }
91
- &:focus {
92
- .ds-svg-icon {
93
- fill: var(--color-link-active);
94
- }
95
- }
76
+ }
77
+ .ds-phase-banner__text {
78
+ @apply text-white print:text-base-content;
96
79
  }
97
80
  }
98
81
  .ds-header__section {
@@ -104,8 +87,8 @@
104
87
  .ds-header__content,
105
88
  .ds-header__section {
106
89
  > .ds-svg-icon--burger {
107
- fill: var(--color-white);
108
90
  @apply float-right focus:bg-focus;
91
+ fill: var(--color-white);
109
92
  }
110
93
  > .ds-close-btn {
111
94
  @apply sm:hidden;
@@ -1,19 +1,19 @@
1
1
  .ds-hidden {
2
2
  @apply hidden;
3
3
  }
4
- .ds-hidden-xs--up {
4
+ .ds-hidden-xs-up {
5
5
  @apply xs:hidden;
6
6
  }
7
- .ds-hidden-sm--up {
7
+ .ds-hidden-sm-up {
8
8
  @apply sm:hidden;
9
9
  }
10
- .ds-hidden-md--up {
10
+ .ds-hidden-md-up {
11
11
  @apply md:hidden;
12
12
  }
13
- .ds-hidden-lg--up {
13
+ .ds-hidden-lg-up {
14
14
  @apply lg:hidden;
15
15
  }
16
- .ds-hidden-xl--up {
16
+ .ds-hidden-xl-up {
17
17
  @apply xl:hidden;
18
18
  }
19
19
  .ds-hidden-xs {
@@ -30,4 +30,4 @@
30
30
  }
31
31
  .ds-hidden-xl {
32
32
  @apply xlOnly:hidden;
33
- }
33
+ }