@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baloise/ds-styles",
3
- "version": "19.5.0",
3
+ "version": "19.6.0",
4
4
  "description": "The Baloise Design-System is an open source project for styling awesome web applications that follow the Baloise corporate styling guidelines.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,8 +23,8 @@
23
23
  "src/"
24
24
  ],
25
25
  "dependencies": {
26
- "@baloise/ds-fonts": "19.5.0",
27
- "@baloise/ds-tokens": "19.5.0",
26
+ "@baloise/ds-fonts": "19.6.0",
27
+ "@baloise/ds-tokens": "19.6.0",
28
28
  "@phenomnomnominal/tsquery": "6.1.3",
29
29
  "cheerio": "1.0.0-rc.12",
30
30
  "glob": "10.3.10",
@@ -112,3 +112,15 @@ ul.is-list
112
112
  ul.list:not(.has-bullet-circle):not(.has-bullet-check) li,
113
113
  ul.is-list:not(.has-bullet-circle):not(.has-bullet-check) li
114
114
  list-style: disc
115
+
116
+ dl.list
117
+ display: grid
118
+ grid-template-columns: var(--bal-description-list-grid-term) var(--bal-description-list-grid-detail)
119
+ row-gap: var(--bal-description-list-row-gap)
120
+ column-gap: var(--bal-description-list-column-gap)
121
+
122
+ dt
123
+ color: var(--bal-description-list-term-color)
124
+
125
+ dd
126
+ color: var(--bal-description-list-detail-color)
@@ -18,3 +18,10 @@
18
18
  --bal-list-bullet-background-red: var(--bal-color-red-3)
19
19
  --bal-list-bullet-background-yellow: var(--bal-color-yellow-3)
20
20
  --bal-list-bullet-background-purple: var(--bal-color-purple-3)
21
+
22
+ --bal-description-list-grid-term: 1fr
23
+ --bal-description-list-grid-detail: 1fr
24
+ --bal-description-list-row-gap: var(--bal-space-xx-small)
25
+ --bal-description-list-column-gap: var(--bal-space-normal)
26
+ --bal-description-list-term-color: var(--bal-color-text-primary-light)
27
+ --bal-description-list-detail-color: var(--bal-color-text-primary)