@baloise/ds-styles 19.5.0 → 19.6.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.
- package/css/all.css +21 -1
- package/css/all.css.map +1 -1
- package/css/all.min.css +1 -1
- package/css/baloise-design-system.css +21 -1
- package/css/baloise-design-system.css.map +1 -1
- package/css/baloise-design-system.min.css +1 -1
- package/css/basic.css +21 -1
- package/css/basic.css.map +1 -1
- package/css/basic.min.css +1 -1
- package/css/core.css +21 -1
- package/css/core.css.map +1 -1
- package/css/core.min.css +1 -1
- package/package.json +3 -3
- package/src/core/list.sass +12 -0
- package/src/core/vars/list.vars.sass +7 -0
package/css/core.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 27 Aug 2025 12:12:26 GMT
|
|
4
4
|
*/
|
|
5
5
|
:root {
|
|
6
6
|
--bal-text-shadow-normal: 0px 0px 4px rgba(0, 0, 0, 0.15), 0px 4px 12px rgba(0, 0, 0, 0.25), 0px 0px 80px rgba(0, 0, 0, 0.5); /* Increases readability when used on a image background. */
|
|
@@ -787,6 +787,12 @@
|
|
|
787
787
|
--bal-list-bullet-background-red: var(--bal-color-red-3);
|
|
788
788
|
--bal-list-bullet-background-yellow: var(--bal-color-yellow-3);
|
|
789
789
|
--bal-list-bullet-background-purple: var(--bal-color-purple-3);
|
|
790
|
+
--bal-description-list-grid-term: 1fr;
|
|
791
|
+
--bal-description-list-grid-detail: 1fr;
|
|
792
|
+
--bal-description-list-row-gap: var(--bal-space-xx-small);
|
|
793
|
+
--bal-description-list-column-gap: var(--bal-space-normal);
|
|
794
|
+
--bal-description-list-term-color: var(--bal-color-text-primary-light);
|
|
795
|
+
--bal-description-list-detail-color: var(--bal-color-text-primary);
|
|
790
796
|
}
|
|
791
797
|
|
|
792
798
|
/**
|
|
@@ -4268,6 +4274,20 @@ ul.is-list:not(.has-bullet-circle):not(.has-bullet-check) li {
|
|
|
4268
4274
|
list-style: disc;
|
|
4269
4275
|
}
|
|
4270
4276
|
|
|
4277
|
+
dl.list {
|
|
4278
|
+
display: grid;
|
|
4279
|
+
grid-template-columns: var(--bal-description-list-grid-term) var(--bal-description-list-grid-detail);
|
|
4280
|
+
row-gap: var(--bal-description-list-row-gap);
|
|
4281
|
+
-moz-column-gap: var(--bal-description-list-column-gap);
|
|
4282
|
+
column-gap: var(--bal-description-list-column-gap);
|
|
4283
|
+
}
|
|
4284
|
+
dl.list dt {
|
|
4285
|
+
color: var(--bal-description-list-term-color);
|
|
4286
|
+
}
|
|
4287
|
+
dl.list dd {
|
|
4288
|
+
color: var(--bal-description-list-detail-color);
|
|
4289
|
+
}
|
|
4290
|
+
|
|
4271
4291
|
.table {
|
|
4272
4292
|
background-color: var(--bal-table-background-color);
|
|
4273
4293
|
color: var(--bal-table-color);
|