@digigov/css 2.0.0-0c4be34e → 2.0.0-107d908d
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.
- package/dist/components.js +1 -1
- package/dist/digigov.css +1 -1
- package/package.json +6 -6
- package/src/components/accordion.common.css +29 -0
- package/src/components/accordion.css +9 -7
- package/src/components/accordion.native.css +27 -0
- package/src/components/autocomplete.css +5 -1
- package/src/components/button.common.css +1 -1
- package/src/components/button.css +1 -1
- package/src/components/code.css +4 -4
- package/src/components/copy-to-clipboard.native.css +2 -4
- package/src/components/filter.css +1 -1
- package/src/components/footer.css +3 -2
- package/src/components/form.css +8 -4
- package/src/components/header.css +1 -1
- package/src/components/layout.css +1 -1
- package/src/components/notification-banner.common.css +1 -1
- package/src/components/notification-banner.css +19 -1
- package/src/components/pagination.css +2 -1
- package/src/components/skeleton.common.css +20 -0
- package/src/components/skeleton.css +7 -10
- package/src/components/skeleton.native.css +53 -0
- package/src/components/summary-list.common.css +4 -1
- package/src/components/summary-list.css +7 -4
- package/src/components/table.css +44 -11
- package/src/components/typography.common.css +1 -3
- package/src/components/typography.css +14 -15
- package/src/components/warning-text.common.css +1 -1
- package/src/components/warning-text.css +8 -6
- package/src/index.native.css +2 -0
|
@@ -60,21 +60,6 @@
|
|
|
60
60
|
@apply opacity-70 text-white print:text-base-content;
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
|
-
.ds-code {
|
|
64
|
-
@apply text-sm sm:text-base bg-base-100;
|
|
65
|
-
&.ds-code--attr {
|
|
66
|
-
@apply text-info;
|
|
67
|
-
}
|
|
68
|
-
&.ds-code--string {
|
|
69
|
-
@apply text-success;
|
|
70
|
-
}
|
|
71
|
-
&.ds-code--keyword {
|
|
72
|
-
@apply text-warning;
|
|
73
|
-
}
|
|
74
|
-
&.ds-code--name {
|
|
75
|
-
@apply text-tertiary;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
63
|
.ds-\!-font-size-14 {
|
|
79
64
|
@apply text-xs md:text-sm !important;
|
|
80
65
|
}
|
|
@@ -194,6 +179,20 @@
|
|
|
194
179
|
&.ds-link--no-underline {
|
|
195
180
|
@apply no-underline hover:underline;
|
|
196
181
|
}
|
|
182
|
+
&.ds-link--disabled {
|
|
183
|
+
@apply cursor-not-allowed !important;
|
|
184
|
+
color: var(--color-base-content);
|
|
185
|
+
&:hover {
|
|
186
|
+
color: var(--color-base-content);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
&.ds-link-warning {
|
|
190
|
+
@apply focus:text-link-active;
|
|
191
|
+
color: var(--color-error-text);
|
|
192
|
+
&:hover {
|
|
193
|
+
color: var(--color-error-hover);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
197
196
|
.ds-heading-xl &,
|
|
198
197
|
.ds-heading-lg &,
|
|
199
198
|
.ds-heading-md &,
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
@import './warning-text.common.css';
|
|
2
|
+
|
|
1
3
|
.ds-warning-text {
|
|
2
|
-
@apply
|
|
4
|
+
@apply util-warning-text py-4 px-0;
|
|
3
5
|
font-size: var(--warning-text-font-size);
|
|
4
6
|
&.ds-warning-text--dense,
|
|
5
7
|
.ds-dense & {
|
|
@@ -15,9 +17,9 @@
|
|
|
15
17
|
.ds-warning-text__content {
|
|
16
18
|
@apply flex items-center;
|
|
17
19
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
}
|
|
21
|
+
.ds-warning-text__assistive {
|
|
22
|
+
@apply absolute w-px h-px m-0 p-0 border-0 overflow-hidden whitespace-nowrap !important;
|
|
23
|
+
clip: rect(0 0 0 0) !important;
|
|
24
|
+
clip-path: inset(50%) !important;
|
|
23
25
|
}
|