@digigov/css 2.0.0-b3ec0588 → 2.0.0-d57821ba

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 (82) hide show
  1. package/defaultTheme/accordion.json +8 -0
  2. package/defaultTheme/brandConfig.json +14 -2
  3. package/defaultTheme/button.json +9 -0
  4. package/defaultTheme/card.json +16 -5
  5. package/defaultTheme/form.json +15 -0
  6. package/defaultTheme/globals.json +11 -1
  7. package/defaultTheme/index.js +1 -1
  8. package/defaultTheme/layout.json +55 -0
  9. package/defaultTheme/misc.json +20 -0
  10. package/defaultTheme/panel.json +5 -0
  11. package/defaultTheme/typography.json +12 -12
  12. package/dist/base/index.css +1 -1
  13. package/dist/base.js +1 -1
  14. package/dist/components.js +1 -1
  15. package/dist/digigov.css +3 -3
  16. package/dist/utilities/index.css +1 -1
  17. package/dist/utilities.js +1 -1
  18. package/package.json +9 -5
  19. package/src/base/base.css +1 -1
  20. package/src/base/index.css +5 -5
  21. package/src/components/accordion.css +56 -53
  22. package/src/components/admin-header.css +2 -19
  23. package/src/components/admin-layout.css +13 -22
  24. package/src/components/autocomplete.css +89 -46
  25. package/src/components/back-to-top.css +3 -4
  26. package/src/components/bottom-info.css +2 -1
  27. package/src/components/breadcrumbs.css +16 -7
  28. package/src/components/button.css +49 -48
  29. package/src/components/card.css +63 -50
  30. package/src/components/checkboxes.css +20 -23
  31. package/src/components/chip.css +28 -29
  32. package/src/components/code.css +136 -0
  33. package/src/components/components.css +2 -2
  34. package/src/components/copy-to-clipboard.css +27 -26
  35. package/src/components/details.css +11 -9
  36. package/src/components/dev-theme.css +2 -3
  37. package/src/components/drawer.css +46 -47
  38. package/src/components/dropdown.css +57 -46
  39. package/src/components/experimental.css +12 -12
  40. package/src/components/fillable.css +4 -4
  41. package/src/components/filter.css +10 -15
  42. package/src/components/footer.css +35 -21
  43. package/src/components/form.css +56 -43
  44. package/src/components/full-page-background.css +1 -1
  45. package/src/components/header.css +40 -35
  46. package/src/components/hidden.css +17 -17
  47. package/src/components/index.css +48 -47
  48. package/src/components/kitchensink.css +33 -33
  49. package/src/components/layout.css +34 -36
  50. package/src/components/loader.css +28 -28
  51. package/src/components/masthead.css +56 -55
  52. package/src/components/misc.css +37 -15
  53. package/src/components/modal.css +21 -14
  54. package/src/components/nav.css +72 -65
  55. package/src/components/notification-banner.css +18 -16
  56. package/src/components/pagination.css +29 -30
  57. package/src/components/panel.css +9 -8
  58. package/src/components/phase-banner.css +5 -5
  59. package/src/components/radios.css +24 -21
  60. package/src/components/skeleton.css +85 -0
  61. package/src/components/skiplink.css +2 -2
  62. package/src/components/stack.css +63 -63
  63. package/src/components/stepnav.css +33 -29
  64. package/src/components/summary-list.css +30 -16
  65. package/src/components/svg-icons.css +78 -77
  66. package/src/components/table.css +159 -178
  67. package/src/components/tabs.css +51 -67
  68. package/src/components/task-list.css +18 -18
  69. package/src/components/timeline.css +4 -3
  70. package/src/components/typography.css +87 -107
  71. package/src/components/warning-text.css +7 -7
  72. package/src/pages/index.js +1 -1
  73. package/src/utilities/index.css +1407 -164
  74. package/src/utilities/utilities.css +1305 -189
  75. package/tailwind.config.js +2 -0
  76. package/defaultTheme/footer.json +0 -8
  77. package/src/pages/admin-filtering-data.js +0 -160
  78. package/src/pages/admin.js +0 -61
  79. package/src/pages/dropdown.js +0 -249
  80. package/src/pages/form.js +0 -400
  81. package/src/pages/pagination.js +0 -124
  82. package/src/pages/table.js +0 -308
@@ -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 {
@@ -59,14 +57,11 @@
59
57
  @apply bg-base-200 p-4 m-0 rounded;
60
58
  }
61
59
  .ds-filter__selected-heading {
62
- @apply flex flex-wrap sm:flex-nowrap mb-4 md:mb-6 justify-between gap-x-2;
60
+ @apply flex flex-wrap sm:flex-nowrap mb-4 md:mb-6 justify-between gap-x-2 gap-y-4;
63
61
  }
64
62
  .ds-input__search-btn {
65
63
  @apply shadow-none !important;
66
- @apply border-b-2 border-base-content rounded-none
67
- px-4 py-2 w-min m-0 ml-3
68
- flex gap-2
69
- hover:bg-success-hover active:bg-success-hover hover:no-underline;
64
+ @apply px-4 py-2 w-min m-0 ml-3 flex gap-2;
70
65
  }
71
66
  .ds-search {
72
67
  @apply flex w-full max-w-3xl;
@@ -127,8 +122,8 @@
127
122
  }
128
123
  .ds-input__search-btn {
129
124
  .ds-svg-icon--search {
130
- fill: var(--color-white);
131
125
  @apply w-7 h-7;
126
+ fill: var(--color-white);
132
127
  }
133
128
  }
134
129
  .ds-results__action-bar {
@@ -1,21 +1,24 @@
1
1
  .ds-footer {
2
- @apply border-0 border-solid font-normal text-base py-4 md:py-8
3
- border-t-4 border-tertiary text-base-800 bg-base-200 w-full
2
+ border: var(--footer-border);
3
+ border-width: var(--footer-border-width);
4
+ background-color: var(--footer-background-color);
5
+ color: var(--footer-color);
6
+ @apply font-normal text-base py-4 md:py-8 w-full
4
7
  print:py-2 print:bg-white print:border-t-2;
5
8
  }
6
9
  .ds-footer__info {
7
- @apply w-full flex flex-1 flex-wrap md:flex-nowrap items-end justify-center md:justify-between box-border ;
10
+ @apply w-full flex flex-1 flex-wrap md:flex-nowrap items-end justify-center md:justify-between box-border;
8
11
  }
9
12
  .ds-footer__info-section {
10
13
  @apply mx-2 md:mx-4 mb-6 print:mb-4;
11
- }
12
- .ds-footer__info-section--grow {
13
- @apply flex flex-grow;
14
+ &.ds-footer__info-section--grow {
15
+ @apply flex flex-grow;
16
+ }
14
17
  }
15
18
  .ds-footer__content {
16
19
  @apply w-full;
17
20
  }
18
- .ds-footer__content--logos {
21
+ .ds-footer__content__logos {
19
22
  @apply flex flex-wrap items-center mb-6 md:mb-8;
20
23
  }
21
24
  .ds-footer__logo {
@@ -27,9 +30,9 @@
27
30
  }
28
31
  .ds-footer__government-logo-inverted {
29
32
  @apply max-w-full h-auto w-52 min-w-52 hidden;
30
-
31
33
  }
32
- .ds-footer__logo, .ds-footer__government-logo {
34
+ .ds-footer__logo,
35
+ .ds-footer__government-logo {
33
36
  @apply max-w-full h-auto w-52 min-w-52 block;
34
37
  }
35
38
  .ds-footer__copyright {
@@ -40,23 +43,28 @@
40
43
  }
41
44
  }
42
45
  .ds-footer__link {
43
- @apply underline ;
46
+ text-decoration: var(--footer__link-text-decoration);
47
+
44
48
  &:hover {
49
+ text-decoration: var(--footer__link-text-decoration-hover);
45
50
  text-decoration-thickness: 2px;
46
- color: var(--color-base-800);
51
+ color:var(--footer__link-color-hover);
47
52
  }
48
53
  &:focus {
54
+ color:var(--footer__link-color-focus);
49
55
  background-color: var(--color-focus) !important;
50
- box-shadow: 0 -2px var(--color-focus), 0 4px var(--color-base-content);
51
- outline: none;
56
+ box-shadow:
57
+ 0 -2px var(--color-focus),
58
+ 0 4px var(--color-base-content);
59
+ outline: none;
52
60
  text-decoration: none;
53
61
  }
54
62
  }
55
63
  .ds-footer__navigation {
56
- @apply flex flex-wrap print:hidden;
64
+ @apply flex flex-wrap print:hidden;
57
65
  }
58
66
  .ds-footer__navigation-section {
59
- @apply inline-block mx-4 mb-8 align-top flex-grow flex-shrink
67
+ @apply inline-block mx-4 mb-8 align-top flex-grow flex-shrink
60
68
  print:hidden;
61
69
  }
62
70
  @media (min-width: 768px) {
@@ -67,11 +75,11 @@
67
75
  .ds-footer__list {
68
76
  @apply m-0 p-0 list-none gap-x-6 text-sm md:text-base
69
77
  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;
78
+ &.ds-footer__list--horizontal {
79
+ @apply mb-4;
80
+ .ds-footer__list-item {
81
+ @apply inline-block mr-4 mb-2;
82
+ }
75
83
  }
76
84
  }
77
85
  @media (min-width: 768px) {
@@ -79,7 +87,8 @@
79
87
  column-count: 2;
80
88
  }
81
89
  }
82
- .ds-footer__list-item {}
90
+ .ds-footer__list-item {
91
+ }
83
92
  .ds-footer__heading {
84
93
  @apply mb-4 pb-4 border-b border-base-300;
85
94
  }
@@ -91,6 +100,11 @@
91
100
  @apply print:hidden;
92
101
  }
93
102
  .ds-link {
103
+ --link-color:var(--color-footer);
104
+ @apply print:text-base-content;
105
+ }
106
+ .ds-body {
107
+ --body-color:var(--color-footer);
94
108
  @apply print:text-base-content;
95
109
  }
96
110
  }
@@ -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-text px-0 pl-4;
8
+ }
4
9
  .ds-fieldset {
5
10
  > .ds-field:last-child,
6
11
  > .ds-btn:last-child {
@@ -25,6 +30,30 @@
25
30
  line-height: var(--label-line-height);
26
31
  letter-spacing: var(--label-letter-spacing);
27
32
  }
33
+ .ds-input {
34
+ border-radius: var(--input-border-radius);
35
+ &.ds-input--width-20-char {
36
+ max-width: 41ex;
37
+ }
38
+ &.ds-input--width-10-char {
39
+ max-width: 23ex;
40
+ }
41
+ &.ds-input--width-5-char {
42
+ max-width: 10.8ex;
43
+ }
44
+ &.ds-input--width-4-char {
45
+ max-width: 9ex;
46
+ }
47
+ &.ds-input--width-3-char {
48
+ max-width: 7.2ex;
49
+ }
50
+ &.ds-input--width-2-char {
51
+ max-width: 5.4ex;
52
+ }
53
+ }
54
+ .ds-textarea {
55
+ border-radius: var(--textarea-border-radius);
56
+ }
28
57
  .ds-input,
29
58
  .ds-select,
30
59
  .ds-textarea {
@@ -33,18 +62,20 @@
33
62
  &:focus {
34
63
  outline: 4px solid var(--color-focus);
35
64
  outline-offset: 0;
36
- -webkit-box-shadow: inset 0 0 0 2px;
37
65
  box-shadow: inset 0 0 0 2px;
38
66
  }
39
67
  }
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
- {
68
+ /* stylelint-disable-next-line digigov/nest-related-rules */
69
+ .ds-input--dense,
70
+ .ds-dense .ds-input,
71
+ .ds-textarea--dense,
72
+ .ds-dense .ds-textarea,
73
+ .ds-select--dense,
74
+ .ds-dense .ds-select,
75
+ .ds-date-input--dense .ds-input,
76
+ .ds-dense .ds-date-input .ds-input {
45
77
  @apply p-1;
46
78
  &:focus {
47
- -webkit-box-shadow: inset 0 0 0 1px;
48
79
  box-shadow: inset 0 0 0 1px;
49
80
  }
50
81
  }
@@ -59,7 +90,8 @@
59
90
  }
60
91
  .ds-date-input {
61
92
  @apply flex flex-wrap gap-y-2;
62
- &.ds-date-input--dense, .ds-dense & {
93
+ &.ds-date-input--dense,
94
+ .ds-dense & {
63
95
  .ds-date-input__item {
64
96
  @apply mr-2;
65
97
  }
@@ -70,29 +102,14 @@
70
102
  }
71
103
  .ds-select {
72
104
  @apply w-auto max-w-full;
105
+ border-radius: var(--select-border-radius);
73
106
  }
74
- .ds-select__option {}
75
- .ds-input--width-20-char {
76
- max-width: 41ex;
77
- }
78
- .ds-input--width-10-char {
79
- max-width: 23ex;
80
- }
81
- .ds-input--width-5-char {
82
- max-width: 10.8ex;
83
- }
84
- .ds-input--width-4-char {
85
- max-width: 9ex;
86
- }
87
- .ds-input--width-3-char {
88
- max-width: 7.2ex;
89
- }
90
- .ds-input--width-2-char {
91
- max-width: 5.4ex;
107
+ .ds-select__option {
92
108
  }
109
+
93
110
  .ds-single-character-input__item {
94
- max-width: 4.4ex;
95
111
  @apply text-center px-0 mr-3;
112
+ max-width: 4.4ex;
96
113
  }
97
114
  .ds-date-input__item {
98
115
  @apply mr-4;
@@ -127,20 +144,16 @@
127
144
  }
128
145
 
129
146
  /* error handling */
130
-
131
- .ds-field--error {
132
- @apply border-l-5 border-error px-0 pl-4;
133
- }
134
147
  .ds-error-message {
135
- @apply md:text-lg text-base block mb-4 text-error font-semibold;
148
+ @apply md:text-lg text-base block mb-4 text-error-text font-semibold;
136
149
  }
150
+ /* stylelint-disable-next-line digigov/nest-related-rules */
137
151
  .ds-input--error {
138
- @apply border-error border-3;
152
+ @apply border-error-text border-3;
139
153
  &:focus {
140
154
  outline: 4px solid var(--color-focus);
141
155
  outline-offset: 0;
142
- -webkit-box-shadow: inset 0 0 0 1px var(--color-error);
143
- box-shadow: inset 0 0 0 1px var(--color-error);
156
+ box-shadow: inset 0 0 0 1px var(--color-error-text);
144
157
  }
145
158
  }
146
159
 
@@ -151,10 +164,10 @@
151
164
  .ds-select:disabled,
152
165
  .ds-checkboxes__input:disabled,
153
166
  .ds-checkboxes__input:disabled::before,
154
- .ds-checkboxes__input:disabled:checked:before,
167
+ .ds-checkboxes__input:disabled:checked::before,
155
168
  .ds-radios__input:disabled,
156
169
  .ds-radios__input:disabled::before,
157
- .ds-radios__input:disabled:checked:before {
170
+ .ds-radios__input:disabled:checked::before {
158
171
  @apply bg-base-300 cursor-not-allowed;
159
172
  }
160
173
  .ds-input:disabled,
@@ -163,8 +176,8 @@
163
176
  .ds-radios__input:disabled::before {
164
177
  @apply border-base-700 text-base-800;
165
178
  }
166
- .ds-checkboxes__input:disabled:checked:after,
167
- .ds-radios__input:disabled:checked:after {
179
+ .ds-checkboxes__input:disabled:checked::after,
180
+ .ds-radios__input:disabled:checked::after {
168
181
  @apply opacity-40;
169
182
  }
170
183
  .ds-radios__label--disabled,
@@ -178,9 +191,6 @@
178
191
  /* overrides */
179
192
 
180
193
  .ds-form {
181
- .ds-body {
182
- @apply mb-4;
183
- }
184
194
  &.ds-grid {
185
195
  @apply grid gap-4;
186
196
  .ds-fieldset {
@@ -193,6 +203,9 @@
193
203
  @apply col-span-12;
194
204
  }
195
205
  }
206
+ .ds-body {
207
+ @apply mb-4;
208
+ }
196
209
  }
197
210
  .ds-label {
198
211
  .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
+ }
@@ -1,19 +1,24 @@
1
1
  .ds-header {
2
- @apply relative bg-primary border-b-8 print:border-b-2 border-tertiary print:bg-white;
3
- border-bottom-style: solid;
2
+ @apply relative border-b-8 print:border-b-2 border-tertiary print:bg-white;
3
+ background: var(--header-background);
4
+ border: var(--header-border);
5
+ border-width: var(--header-border-width);
4
6
  }
5
7
  .ds-header__content {
6
- @apply px-4 py-2 mx-auto max-w-5xl w-full flex justify-between items-center
8
+ @apply px-4 py-2 mx-auto max-w-5xl w-full flex justify-between items-center flex-wrap sm:flex-nowrap
7
9
  print:px-0 gap-3;
8
10
  }
9
11
  .ds-header__section {
10
12
  @apply flex justify-start flex-wrap items-center gap-x-4 gap-y-2
11
13
  print:gap-1;
14
+ &:last-child:not(:first-child) {
15
+ @apply flex-1 justify-end sm:flex-none sm:justify-start;
16
+ }
12
17
  }
13
18
  .ds-header__logo {
19
+ @apply h-12 print:hidden;
14
20
  print-color-adjust: exact !important;
15
21
  -webkit-print-color-adjust: exact !important;
16
- @apply h-12 print:hidden;
17
22
  }
18
23
  .ds-header__logo-inverted {
19
24
  @apply h-12 hidden print:block;
@@ -22,18 +27,18 @@
22
27
  @apply h-10 print:hidden;
23
28
  }
24
29
  .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);
30
+ box-shadow: 0 0 0 4px var(--color-focus);
28
31
  outline: none;
29
32
  text-decoration: none;
30
33
  }
31
34
  .ds-header__title {
32
- @apply text-white font-bold text-2xl leading-10 tracking-wide no-underline
35
+ @apply font-bold text-2xl leading-10 tracking-wide no-underline
33
36
  w-auto align-middle hover:no-underline
34
37
  print:text-base-content;
38
+ color: var(--header__title-color);
35
39
  &:hover {
36
- @apply text-white;
40
+ /* @apply text-white; */
41
+ color: var(--header__title-color-hover);
37
42
  }
38
43
  &:focus {
39
44
  text-decoration: none;
@@ -51,8 +56,22 @@
51
56
  .ds-header__content,
52
57
  .ds-header__section {
53
58
  > .ds-link,
54
- > .ds-dropdown .ds-dropdown__button.ds-link {
55
- @apply text-white focus:text-link-active print:text-base-content;
59
+ > .ds-dropdown .ds-dropdown__button.ds-link {
60
+ @apply focus:text-link-active print:text-base-content;
61
+ color: var(--color-header-text);
62
+ }
63
+ > .ds-skeleton {
64
+ @apply bg-primary-100 w-80 max-w-xs;
65
+ &.ds-skeleton--animate {
66
+ &::after {
67
+ background: linear-gradient(
68
+ 90deg,
69
+ transparent,
70
+ rgba(255, 255, 255, 0.05),
71
+ transparent
72
+ );
73
+ }
74
+ }
56
75
  }
57
76
  }
58
77
  .ds-dropdown {
@@ -62,12 +81,9 @@
62
81
  @apply sm:w-max;
63
82
  }
64
83
  .ds-link {
65
- .ds-svg-icon {
66
- fill: var(--color-white);
67
- }
68
84
  &:hover {
69
85
  .ds-svg-icon {
70
- fill: var(--color-white);
86
+ fill: var(--color-header-text-hover);
71
87
  }
72
88
  }
73
89
  &:focus {
@@ -75,24 +91,13 @@
75
91
  fill: var(--color-link-active);
76
92
  }
77
93
  }
78
- }
79
- .ds-phase-banner__text {
80
- @apply text-white print:text-base-content;
81
- }
82
- .ds-link {
83
94
  .ds-svg-icon {
84
95
  fill: var(--color-white);
85
96
  }
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
- }
97
+ }
98
+ .ds-phase-banner__text {
99
+ @apply print:text-base-content;
100
+ color: var(--color-header-text);
96
101
  }
97
102
  }
98
103
  .ds-header__section {
@@ -104,13 +109,13 @@
104
109
  .ds-header__content,
105
110
  .ds-header__section {
106
111
  > .ds-svg-icon--burger {
107
- fill: var(--color-white);
108
112
  @apply float-right focus:bg-focus;
113
+ fill: var(--color-header-text);
109
114
  }
110
115
  > .ds-close-btn {
111
116
  @apply sm:hidden;
112
117
  .ds-svg-icon--close {
113
- fill: var(--color-link) !important;
118
+ fill: var(--color-header-text) !important;
114
119
  }
115
120
  }
116
121
  > .ds-nav__list {
@@ -118,16 +123,16 @@
118
123
  > .ds-nav__list-item-link,
119
124
  > .ds-nav__list-item-btn {
120
125
  &:not(:focus) {
121
- @apply text-white;
126
+ color: var(--color-header-text);
122
127
  }
123
128
  }
124
129
  > .ds-nav__list-item-link--active,
125
130
  > .ds-nav__list-item-btn--active {
126
131
  &:not(:focus) {
127
- @apply text-white !important;
132
+ color: var(--color-header-text) !important;
128
133
  }
129
134
  .ds-svg-icon {
130
- fill: var(--color-white);
135
+ fill: var(--color-header-text);
131
136
  }
132
137
  }
133
138
  }
@@ -1,33 +1,33 @@
1
1
  .ds-hidden {
2
- @apply hidden;
2
+ @apply hidden !important;
3
3
  }
4
- .ds-hidden-xs--up {
5
- @apply xs:hidden;
4
+ .ds-hidden-xs-up {
5
+ @apply xs:hidden !important;
6
6
  }
7
- .ds-hidden-sm--up {
8
- @apply sm:hidden;
7
+ .ds-hidden-sm-up {
8
+ @apply sm:hidden !important;
9
9
  }
10
- .ds-hidden-md--up {
11
- @apply md:hidden;
10
+ .ds-hidden-md-up {
11
+ @apply md:hidden !important;
12
12
  }
13
- .ds-hidden-lg--up {
14
- @apply lg:hidden;
13
+ .ds-hidden-lg-up {
14
+ @apply lg:hidden !important;
15
15
  }
16
- .ds-hidden-xl--up {
17
- @apply xl:hidden;
16
+ .ds-hidden-xl-up {
17
+ @apply xl:hidden !important;
18
18
  }
19
19
  .ds-hidden-xs {
20
- @apply xsOnly:hidden;
20
+ @apply xsOnly:hidden !important;
21
21
  }
22
22
  .ds-hidden-sm {
23
- @apply smOnly:hidden;
23
+ @apply smOnly:hidden !important;
24
24
  }
25
25
  .ds-hidden-md {
26
- @apply mdOnly:hidden;
26
+ @apply mdOnly:hidden !important;
27
27
  }
28
28
  .ds-hidden-lg {
29
- @apply lgOnly:hidden;
29
+ @apply lgOnly:hidden !important;
30
30
  }
31
31
  .ds-hidden-xl {
32
- @apply xlOnly:hidden;
33
- }
32
+ @apply xlOnly:hidden !important;
33
+ }
@@ -1,47 +1,48 @@
1
- @import "./accordion.css";
2
- @import "./autocomplete.css";
3
- @import "./button.css";
4
- @import "./bottom-info.css";
5
- @import "./chip.css";
6
- @import "./form.css";
7
- @import "./checkboxes.css";
8
- @import "./chip.css";
9
- @import "./dropdown.css";
10
- @import "./radios.css";
11
- @import "./header.css";
12
- @import "./footer.css";
13
- @import "./layout.css";
14
- @import "./nav.css";
15
- @import "./typography.css";
16
- @import "./back-to-top.css";
17
- @import "./table.css";
18
- @import "./filter.css";
19
- @import "./admin-layout.css";
20
- @import "./admin-header.css";
21
- @import "./breadcrumbs.css";
22
- @import "./card.css";
23
- @import "./details.css";
24
- @import "./notification-banner.css";
25
- @import "./masthead.css";
26
- @import "./panel.css";
27
- @import "./phase-banner.css";
28
- @import "./summary-list.css";
29
- @import "./stack.css";
30
- @import "./tabs.css";
31
- @import "./misc.css";
32
- @import "./modal.css";
33
- @import "./svg-icons.css";
34
- @import "./pagination.css";
35
- @import "./loader.css";
36
- @import "./full-page-background.css";
37
- @import "./drawer.css";
38
- @import "./copy-to-clipboard.css";
39
- @import "./fillable.css";
40
- @import "./skiplink.css";
41
- @import "./timeline.css";
42
- @import "./task-list.css";
43
- @import "./stepnav.css";
44
- @import "./dev-theme.css";
45
- @import "./kitchensink.css";
46
- @import "./hidden.css";
47
- @import "./warning-text.css";
1
+ @import './accordion.css';
2
+ @import './admin-header.css';
3
+ @import './admin-layout.css';
4
+ @import './autocomplete.css';
5
+ @import './back-to-top.css';
6
+ @import './bottom-info.css';
7
+ @import './breadcrumbs.css';
8
+ @import './button.css';
9
+ @import './card.css';
10
+ @import './code.css';
11
+ @import './form.css';
12
+ @import './checkboxes.css';
13
+ @import './chip.css';
14
+ @import './copy-to-clipboard.css';
15
+ @import './details.css';
16
+ @import './dev-theme.css';
17
+ @import './drawer.css';
18
+ @import './dropdown.css';
19
+ @import './fillable.css';
20
+ @import './filter.css';
21
+ @import './footer.css';
22
+ @import './full-page-background.css';
23
+ @import './header.css';
24
+ @import './hidden.css';
25
+ @import './layout.css';
26
+ @import './loader.css';
27
+ @import './masthead.css';
28
+ @import './misc.css';
29
+ @import './modal.css';
30
+ @import './nav.css';
31
+ @import './pagination.css';
32
+ @import './panel.css';
33
+ @import './phase-banner.css';
34
+ @import './radios.css';
35
+ @import './skeleton.css';
36
+ @import './skiplink.css';
37
+ @import './stack.css';
38
+ @import './stepnav.css';
39
+ @import './summary-list.css';
40
+ @import './svg-icons.css';
41
+ @import './table.css';
42
+ @import './tabs.css';
43
+ @import './task-list.css';
44
+ @import './timeline.css';
45
+ @import './typography.css';
46
+ @import './notification-banner.css';
47
+ @import './warning-text.css';
48
+ @import './kitchensink.css';