@db-ux/core-foundations 4.4.2 → 4.5.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/CHANGELOG.md +9 -1
- package/build/styles/_screen-sizes.scss +2 -4
- package/build/styles/_variables.scss +10 -10
- package/build/styles/absolute.css +113 -45
- package/build/styles/colors/_variables.additional-palette.scss +2 -2
- package/build/styles/colors/_variables.palette.scss +2 -2
- package/build/styles/defaults/default-code.css +1 -1
- package/build/styles/defaults/default-elevation.css +1 -1
- package/build/styles/defaults/default-required.scss +1 -1
- package/build/styles/density/classes/all.css +0 -22
- package/build/styles/density/classes/expressive.css +0 -22
- package/build/styles/density/classes/functional.css +0 -22
- package/build/styles/density/classes/regular.css +0 -22
- package/build/styles/fonts/_font-sizes.scss +4 -6
- package/build/styles/fonts/_variables.scss +2 -2
- package/build/styles/fonts/classes/all.css +0 -19
- package/build/styles/fonts/classes/body/2xl.css +0 -19
- package/build/styles/fonts/classes/body/2xs.css +0 -19
- package/build/styles/fonts/classes/body/3xl.css +0 -19
- package/build/styles/fonts/classes/body/3xs.css +0 -19
- package/build/styles/fonts/classes/body/all.css +0 -19
- package/build/styles/fonts/classes/body/lg.css +0 -19
- package/build/styles/fonts/classes/body/md.css +0 -19
- package/build/styles/fonts/classes/body/sm.css +0 -19
- package/build/styles/fonts/classes/body/xl.css +0 -19
- package/build/styles/fonts/classes/body/xs.css +0 -19
- package/build/styles/fonts/classes/headline/2xl.css +0 -19
- package/build/styles/fonts/classes/headline/2xs.css +0 -19
- package/build/styles/fonts/classes/headline/3xl.css +0 -19
- package/build/styles/fonts/classes/headline/3xs.css +0 -19
- package/build/styles/fonts/classes/headline/all.css +0 -19
- package/build/styles/fonts/classes/headline/lg.css +0 -19
- package/build/styles/fonts/classes/headline/md.css +0 -19
- package/build/styles/fonts/classes/headline/sm.css +0 -19
- package/build/styles/fonts/classes/headline/xl.css +0 -19
- package/build/styles/fonts/classes/headline/xs.css +0 -19
- package/build/styles/helpers/_a11y.scss +1 -1
- package/build/styles/helpers/_functions.scss +12 -2
- package/build/styles/helpers/classes/all.css +0 -10
- package/build/styles/helpers/classes/divider.css +0 -10
- package/build/styles/helpers/classes/focus.css +0 -10
- package/build/styles/icons/_icon-helpers.scss +1 -0
- package/build/styles/index.css +113 -45
- package/build/styles/relative.css +113 -45
- package/build/styles/rollup.css +113 -45
- package/build/styles/webpack.css +113 -45
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -81,10 +81,8 @@ $db-breakpoint-xl: helpers.px-to-em($db-screen-size-xl);
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
87
|
-
*/
|
|
84
|
+
// @mixin screen-min-max
|
|
85
|
+
// @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
88
86
|
@mixin screen-min-max($data) {
|
|
89
87
|
$min: "";
|
|
90
88
|
$max: "";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
// Use sizing values for fixed heights/widths e.g. the db-button has always a fixed height
|
|
2
2
|
$db-sizing-3xs: var(--db-sizing-3xs);
|
|
3
3
|
$db-sizing-2xs: var(--db-sizing-2xs);
|
|
4
4
|
$db-sizing-xs: var(--db-sizing-xs);
|
|
@@ -9,7 +9,7 @@ $db-sizing-xl: var(--db-sizing-xl);
|
|
|
9
9
|
$db-sizing-2xl: var(--db-sizing-2xl);
|
|
10
10
|
$db-sizing-3xl: var(--db-sizing-3xl);
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
// Use fixed spacings for all kinds of distances (margin, padding, ...)
|
|
13
13
|
$db-spacing-fixed-3xs: var(--db-spacing-fixed-3xs);
|
|
14
14
|
$db-spacing-fixed-2xs: var(--db-spacing-fixed-2xs);
|
|
15
15
|
$db-spacing-fixed-xs: var(--db-spacing-fixed-xs);
|
|
@@ -20,8 +20,8 @@ $db-spacing-fixed-xl: var(--db-spacing-fixed-xl);
|
|
|
20
20
|
$db-spacing-fixed-2xl: var(--db-spacing-fixed-2xl);
|
|
21
21
|
$db-spacing-fixed-3xl: var(--db-spacing-fixed-3xl);
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding.
|
|
23
|
+
// The primary use-case for responsive spacings are
|
|
24
|
+
// paddings/gaps in an application e.g. the <main> should have a responsive padding.
|
|
25
25
|
$db-spacing-responsive-3xs: var(--db-spacing-responsive-3xs);
|
|
26
26
|
$db-spacing-responsive-2xs: var(--db-spacing-responsive-2xs);
|
|
27
27
|
$db-spacing-responsive-xs: var(--db-spacing-responsive-xs);
|
|
@@ -32,13 +32,13 @@ $db-spacing-responsive-xl: var(--db-spacing-responsive-xl);
|
|
|
32
32
|
$db-spacing-responsive-2xl: var(--db-spacing-responsive-2xl);
|
|
33
33
|
$db-spacing-responsive-3xl: var(--db-spacing-responsive-3xl);
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
// Elevation
|
|
36
36
|
|
|
37
37
|
$db-elevation-sm: var(--db-elevation-sm);
|
|
38
38
|
$db-elevation-md: var(--db-elevation-md);
|
|
39
39
|
$db-elevation-lg: var(--db-elevation-lg);
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
// Border
|
|
42
42
|
|
|
43
43
|
$db-border-width-3xs: var(--db-border-width-3xs);
|
|
44
44
|
$db-border-width-2xs: var(--db-border-width-2xs);
|
|
@@ -60,7 +60,7 @@ $db-border-radius-2xl: var(--db-border-radius-2xl);
|
|
|
60
60
|
$db-border-radius-3xl: var(--db-border-radius-3xl);
|
|
61
61
|
$db-border-radius-full: var(--db-border-radius-full);
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
// Opacity
|
|
64
64
|
|
|
65
65
|
$db-opacity-3xs: var(--db-opacity-3xs);
|
|
66
66
|
$db-opacity-2xs: var(--db-opacity-2xs);
|
|
@@ -73,7 +73,7 @@ $db-opacity-2xl: var(--db-opacity-2xl);
|
|
|
73
73
|
$db-opacity-3xl: var(--db-opacity-3xl);
|
|
74
74
|
$db-opacity-full: var(--db-opacity-full);
|
|
75
75
|
|
|
76
|
-
|
|
76
|
+
// Transitions
|
|
77
77
|
|
|
78
78
|
$db-transition-duration-extra-slow: var(--db-transition-duration-extra-slow);
|
|
79
79
|
$db-transition-duration-slow: var(--db-transition-duration-slow);
|
|
@@ -89,7 +89,7 @@ $db-transition-straight-functional: var(--db-transition-straight-functional);
|
|
|
89
89
|
$db-transition-straight-show: var(--db-transition-straight-show);
|
|
90
90
|
$db-transition-straight-hide: var(--db-transition-straight-hide);
|
|
91
91
|
|
|
92
|
-
|
|
92
|
+
// Screen sizes
|
|
93
93
|
|
|
94
94
|
$db-screen-xs: var(--db-screen-xs);
|
|
95
95
|
$db-screen-sm: var(--db-screen-sm);
|
|
@@ -97,7 +97,7 @@ $db-screen-md: var(--db-screen-md);
|
|
|
97
97
|
$db-screen-lg: var(--db-screen-lg);
|
|
98
98
|
$db-screen-xl: var(--db-screen-xl);
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
// Container sizes
|
|
101
101
|
|
|
102
102
|
$db-container-3xs: var(--db-container-3xs);
|
|
103
103
|
$db-container-2xs: var(--db-container-2xs);
|
|
@@ -41,16 +41,6 @@
|
|
|
41
41
|
font-weight: 900;
|
|
42
42
|
src: url("/assets/fonts/OpenSans-ExtraBold-EU.woff2") format("woff2");
|
|
43
43
|
}
|
|
44
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
45
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
46
|
-
/* The primary use-case for responsive spacings are
|
|
47
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
48
|
-
/* Elevation */
|
|
49
|
-
/* Border */
|
|
50
|
-
/* Opacity */
|
|
51
|
-
/* Transitions */
|
|
52
|
-
/* Screen sizes */
|
|
53
|
-
/* Container sizes */
|
|
54
44
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
55
45
|
blockquote:not([class]), [data-mode], :root,
|
|
56
46
|
:host {
|
|
@@ -310,6 +300,7 @@ select,
|
|
|
310
300
|
text-transform: none;
|
|
311
301
|
overflow: clip;
|
|
312
302
|
vertical-align: var(--db-icon-vertical-align, middle);
|
|
303
|
+
/* stylelint-disable-next-line db-ux/use-sizing */
|
|
313
304
|
block-size: var(--db-icon-font-size, 1.5rem);
|
|
314
305
|
aspect-ratio: 1;
|
|
315
306
|
flex-shrink: 0;
|
|
@@ -6023,12 +6014,6 @@ html::after {
|
|
|
6023
6014
|
inherits: true;
|
|
6024
6015
|
}
|
|
6025
6016
|
/* Use this file if you want the default color and density in your project */
|
|
6026
|
-
/**
|
|
6027
|
-
Generates 3 types of placeholders, e.g:
|
|
6028
|
-
- %db-component-variables-md
|
|
6029
|
-
- %db-font-size-md
|
|
6030
|
-
- %db-overwrite-font-size-md
|
|
6031
|
-
*/
|
|
6032
6017
|
@layer variables {}
|
|
6033
6018
|
|
|
6034
6019
|
@layer variables {}
|
|
@@ -6112,12 +6097,6 @@ code {
|
|
|
6112
6097
|
|
|
6113
6098
|
@layer variables {}
|
|
6114
6099
|
|
|
6115
|
-
/* Use for body tags like <p> */
|
|
6116
|
-
/* Use for headline tags like <h1> */
|
|
6117
|
-
/**
|
|
6118
|
-
* @mixin screen-min-max
|
|
6119
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
6120
|
-
*/
|
|
6121
6100
|
@layer variables {}
|
|
6122
6101
|
|
|
6123
6102
|
:root,
|
|
@@ -6443,34 +6422,94 @@ code {
|
|
|
6443
6422
|
transition: box-shadow var(--db-transition-duration-fast) var(--db-transition-timing-functional);
|
|
6444
6423
|
}
|
|
6445
6424
|
}
|
|
6446
|
-
.db-interactive-elevation:hover:not(:disabled,
|
|
6447
|
-
[
|
|
6425
|
+
.db-interactive-elevation:hover:not(:disabled,
|
|
6426
|
+
[aria-disabled=true],
|
|
6427
|
+
[tabindex="-1"],
|
|
6428
|
+
:has(:disabled)),
|
|
6429
|
+
[data-interactive=elevation]:hover:not(:disabled,
|
|
6430
|
+
[aria-disabled=true],
|
|
6431
|
+
[tabindex="-1"],
|
|
6432
|
+
:has(:disabled)) {
|
|
6448
6433
|
cursor: var(--db-overwrite-cursor, pointer);
|
|
6449
6434
|
box-shadow: var(--db-elevation-lg);
|
|
6450
6435
|
}
|
|
6451
|
-
.db-interactive-elevation:hover:not(:disabled,
|
|
6452
|
-
[
|
|
6453
|
-
[
|
|
6436
|
+
.db-interactive-elevation:hover:not(:disabled,
|
|
6437
|
+
[aria-disabled=true],
|
|
6438
|
+
[tabindex="-1"],
|
|
6439
|
+
:has(:disabled)):is(textarea), .db-interactive-elevation:hover:not(:disabled,
|
|
6440
|
+
[aria-disabled=true],
|
|
6441
|
+
[tabindex="-1"],
|
|
6442
|
+
:has(:disabled)):is(input),
|
|
6443
|
+
[data-interactive=elevation]:hover:not(:disabled,
|
|
6444
|
+
[aria-disabled=true],
|
|
6445
|
+
[tabindex="-1"],
|
|
6446
|
+
:has(:disabled)):is(textarea),
|
|
6447
|
+
[data-interactive=elevation]:hover:not(:disabled,
|
|
6448
|
+
[aria-disabled=true],
|
|
6449
|
+
[tabindex="-1"],
|
|
6450
|
+
:has(:disabled)):is(input) {
|
|
6454
6451
|
cursor: initial;
|
|
6455
6452
|
}
|
|
6456
|
-
.db-interactive-elevation:hover:not(:disabled,
|
|
6457
|
-
[
|
|
6458
|
-
[
|
|
6453
|
+
.db-interactive-elevation:hover:not(:disabled,
|
|
6454
|
+
[aria-disabled=true],
|
|
6455
|
+
[tabindex="-1"],
|
|
6456
|
+
:has(:disabled)):is(input[type=checkbox]), .db-interactive-elevation:hover:not(:disabled,
|
|
6457
|
+
[aria-disabled=true],
|
|
6458
|
+
[tabindex="-1"],
|
|
6459
|
+
:has(:disabled)):is(input[type=radio]:not(:checked)),
|
|
6460
|
+
[data-interactive=elevation]:hover:not(:disabled,
|
|
6461
|
+
[aria-disabled=true],
|
|
6462
|
+
[tabindex="-1"],
|
|
6463
|
+
:has(:disabled)):is(input[type=checkbox]),
|
|
6464
|
+
[data-interactive=elevation]:hover:not(:disabled,
|
|
6465
|
+
[aria-disabled=true],
|
|
6466
|
+
[tabindex="-1"],
|
|
6467
|
+
:has(:disabled)):is(input[type=radio]:not(:checked)) {
|
|
6459
6468
|
cursor: pointer;
|
|
6460
6469
|
}
|
|
6461
|
-
.db-interactive-elevation:active:not(:disabled,
|
|
6462
|
-
[
|
|
6470
|
+
.db-interactive-elevation:active:not(:disabled,
|
|
6471
|
+
[aria-disabled=true],
|
|
6472
|
+
[tabindex="-1"],
|
|
6473
|
+
:has(:disabled)),
|
|
6474
|
+
[data-interactive=elevation]:active:not(:disabled,
|
|
6475
|
+
[aria-disabled=true],
|
|
6476
|
+
[tabindex="-1"],
|
|
6477
|
+
:has(:disabled)) {
|
|
6463
6478
|
cursor: var(--db-overwrite-cursor, pointer);
|
|
6464
6479
|
box-shadow: var(--db-elevation-sm);
|
|
6465
6480
|
}
|
|
6466
|
-
.db-interactive-elevation:active:not(:disabled,
|
|
6467
|
-
[
|
|
6468
|
-
[
|
|
6481
|
+
.db-interactive-elevation:active:not(:disabled,
|
|
6482
|
+
[aria-disabled=true],
|
|
6483
|
+
[tabindex="-1"],
|
|
6484
|
+
:has(:disabled)):is(textarea), .db-interactive-elevation:active:not(:disabled,
|
|
6485
|
+
[aria-disabled=true],
|
|
6486
|
+
[tabindex="-1"],
|
|
6487
|
+
:has(:disabled)):is(input),
|
|
6488
|
+
[data-interactive=elevation]:active:not(:disabled,
|
|
6489
|
+
[aria-disabled=true],
|
|
6490
|
+
[tabindex="-1"],
|
|
6491
|
+
:has(:disabled)):is(textarea),
|
|
6492
|
+
[data-interactive=elevation]:active:not(:disabled,
|
|
6493
|
+
[aria-disabled=true],
|
|
6494
|
+
[tabindex="-1"],
|
|
6495
|
+
:has(:disabled)):is(input) {
|
|
6469
6496
|
cursor: initial;
|
|
6470
6497
|
}
|
|
6471
|
-
.db-interactive-elevation:active:not(:disabled,
|
|
6472
|
-
[
|
|
6473
|
-
[
|
|
6498
|
+
.db-interactive-elevation:active:not(:disabled,
|
|
6499
|
+
[aria-disabled=true],
|
|
6500
|
+
[tabindex="-1"],
|
|
6501
|
+
:has(:disabled)):is(input[type=checkbox]), .db-interactive-elevation:active:not(:disabled,
|
|
6502
|
+
[aria-disabled=true],
|
|
6503
|
+
[tabindex="-1"],
|
|
6504
|
+
:has(:disabled)):is(input[type=radio]:not(:checked)),
|
|
6505
|
+
[data-interactive=elevation]:active:not(:disabled,
|
|
6506
|
+
[aria-disabled=true],
|
|
6507
|
+
[tabindex="-1"],
|
|
6508
|
+
:has(:disabled)):is(input[type=checkbox]),
|
|
6509
|
+
[data-interactive=elevation]:active:not(:disabled,
|
|
6510
|
+
[aria-disabled=true],
|
|
6511
|
+
[tabindex="-1"],
|
|
6512
|
+
:has(:disabled)):is(input[type=radio]:not(:checked)) {
|
|
6474
6513
|
cursor: pointer;
|
|
6475
6514
|
}
|
|
6476
6515
|
|
|
@@ -6619,24 +6658,54 @@ a:has(code:not([class]):only-child) {
|
|
|
6619
6658
|
color: var(--db-adaptive-on-bg-inverted-default);
|
|
6620
6659
|
/* stylelint-disable-next-line a11y/selector-pseudo-class-focus */
|
|
6621
6660
|
}
|
|
6622
|
-
a:has(code:not([class]):only-child):hover:not(:disabled,
|
|
6661
|
+
a:has(code:not([class]):only-child):hover:not(:disabled,
|
|
6662
|
+
[aria-disabled=true],
|
|
6663
|
+
[tabindex="-1"],
|
|
6664
|
+
:has(:disabled)) {
|
|
6623
6665
|
cursor: var(--db-overwrite-cursor, pointer);
|
|
6624
6666
|
color: var(--db-adaptive-on-bg-inverted-hovered);
|
|
6625
6667
|
}
|
|
6626
|
-
a:has(code:not([class]):only-child):hover:not(:disabled,
|
|
6668
|
+
a:has(code:not([class]):only-child):hover:not(:disabled,
|
|
6669
|
+
[aria-disabled=true],
|
|
6670
|
+
[tabindex="-1"],
|
|
6671
|
+
:has(:disabled)):is(textarea), a:has(code:not([class]):only-child):hover:not(:disabled,
|
|
6672
|
+
[aria-disabled=true],
|
|
6673
|
+
[tabindex="-1"],
|
|
6674
|
+
:has(:disabled)):is(input) {
|
|
6627
6675
|
cursor: initial;
|
|
6628
6676
|
}
|
|
6629
|
-
a:has(code:not([class]):only-child):hover:not(:disabled,
|
|
6677
|
+
a:has(code:not([class]):only-child):hover:not(:disabled,
|
|
6678
|
+
[aria-disabled=true],
|
|
6679
|
+
[tabindex="-1"],
|
|
6680
|
+
:has(:disabled)):is(input[type=checkbox]), a:has(code:not([class]):only-child):hover:not(:disabled,
|
|
6681
|
+
[aria-disabled=true],
|
|
6682
|
+
[tabindex="-1"],
|
|
6683
|
+
:has(:disabled)):is(input[type=radio]:not(:checked)) {
|
|
6630
6684
|
cursor: pointer;
|
|
6631
6685
|
}
|
|
6632
|
-
a:has(code:not([class]):only-child):active:not(:disabled,
|
|
6686
|
+
a:has(code:not([class]):only-child):active:not(:disabled,
|
|
6687
|
+
[aria-disabled=true],
|
|
6688
|
+
[tabindex="-1"],
|
|
6689
|
+
:has(:disabled)) {
|
|
6633
6690
|
cursor: var(--db-overwrite-cursor, pointer);
|
|
6634
6691
|
color: var(--db-adaptive-on-bg-inverted-pressed);
|
|
6635
6692
|
}
|
|
6636
|
-
a:has(code:not([class]):only-child):active:not(:disabled,
|
|
6693
|
+
a:has(code:not([class]):only-child):active:not(:disabled,
|
|
6694
|
+
[aria-disabled=true],
|
|
6695
|
+
[tabindex="-1"],
|
|
6696
|
+
:has(:disabled)):is(textarea), a:has(code:not([class]):only-child):active:not(:disabled,
|
|
6697
|
+
[aria-disabled=true],
|
|
6698
|
+
[tabindex="-1"],
|
|
6699
|
+
:has(:disabled)):is(input) {
|
|
6637
6700
|
cursor: initial;
|
|
6638
6701
|
}
|
|
6639
|
-
a:has(code:not([class]):only-child):active:not(:disabled,
|
|
6702
|
+
a:has(code:not([class]):only-child):active:not(:disabled,
|
|
6703
|
+
[aria-disabled=true],
|
|
6704
|
+
[tabindex="-1"],
|
|
6705
|
+
:has(:disabled)):is(input[type=checkbox]), a:has(code:not([class]):only-child):active:not(:disabled,
|
|
6706
|
+
[aria-disabled=true],
|
|
6707
|
+
[tabindex="-1"],
|
|
6708
|
+
:has(:disabled)):is(input[type=radio]:not(:checked)) {
|
|
6640
6709
|
cursor: pointer;
|
|
6641
6710
|
}
|
|
6642
6711
|
a:has(code:not([class]):only-child) > code {
|
|
@@ -10475,7 +10544,6 @@ head:has([name=color-scheme][content=dark]) + body {
|
|
|
10475
10544
|
--db-color-scheme: dark;
|
|
10476
10545
|
}
|
|
10477
10546
|
|
|
10478
|
-
/* TODO: Switch to attr() as soon as this one is fully supported */
|
|
10479
10547
|
[data-mode=light] {
|
|
10480
10548
|
color-scheme: light;
|
|
10481
10549
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
// Palette for additional colors
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
// Note: In general you don't need this file. Use this only if you really know what you do!
|
|
4
4
|
|
|
5
5
|
// yellow
|
|
6
6
|
$db-yellow-0: var(--db-yellow-0);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
// Palette colors
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
// Note: In general you don't need this file. Use this only if you really know what you do!
|
|
4
4
|
|
|
5
5
|
// brand
|
|
6
6
|
$db-brand-0: var(--db-brand-0);
|
|
@@ -94,4 +94,4 @@
|
|
|
94
94
|
--db-neutral-on-bg-vibrant-hovered
|
|
95
95
|
);--db-adaptive-on-bg-vibrant-pressed:var(
|
|
96
96
|
--db-neutral-on-bg-vibrant-pressed
|
|
97
|
-
)}}blockquote:not([class]){background-color:var(--db-neutral-bg-basic-transparent-semi-default);color:var(--db-neutral-on-bg-basic-emphasis-100-default)}blockquote:not([class]):after,blockquote:not([class]):before{--db-icon-color:var(--db-neutral-on-bg-basic-emphasis-100-default)}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}pre:not([class]):has(code){background-color:var(--db-adaptive-bg-inverted-contrast-max-default);color:var(--db-adaptive-on-bg-inverted-default);padding:var(--db-spacing-fixed-xs)}pre:not([class]):has(code),pre:not([class]):has(code) code,pre:not([class]):has(code) span{font-family:monospace}a:has(code:not([class]):only-child){background-color:var(--db-adaptive-bg-inverted-contrast-max-default);color:var(--db-adaptive-on-bg-inverted-default)}a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true]){color:var(--db-adaptive-on-bg-inverted-hovered);cursor:var(--db-overwrite-cursor,pointer)}a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true]):is(input),a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true]):is(textarea){cursor:auto}a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true]):is(input[type=checkbox]),a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true]):is(input[type=radio]:not(:checked)){cursor:pointer}a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true]){color:var(--db-adaptive-on-bg-inverted-pressed);cursor:var(--db-overwrite-cursor,pointer)}a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true]):is(input),a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true]):is(textarea){cursor:auto}a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true]):is(input[type=checkbox]),a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true]):is(input[type=radio]:not(:checked)){cursor:pointer}a:has(code:not([class]):only-child)>code{color:inherit}code:not([class]){background-color:var(--db-adaptive-bg-inverted-contrast-max-default);color:var(--db-adaptive-on-bg-inverted-default);padding-block:var(--db-spacing-fixed-3xs);padding-inline:var(--db-spacing-fixed-2xs)}code:not([class]),code:not([class]) span{font-family:monospace}blockquote:not([class]){margin:0;padding:var(--db-spacing-fixed-sm) var(--db-spacing-fixed-md)}
|
|
97
|
+
)}}blockquote:not([class]){background-color:var(--db-neutral-bg-basic-transparent-semi-default);color:var(--db-neutral-on-bg-basic-emphasis-100-default)}blockquote:not([class]):after,blockquote:not([class]):before{--db-icon-color:var(--db-neutral-on-bg-basic-emphasis-100-default)}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}pre:not([class]):has(code){background-color:var(--db-adaptive-bg-inverted-contrast-max-default);color:var(--db-adaptive-on-bg-inverted-default);padding:var(--db-spacing-fixed-xs)}pre:not([class]):has(code),pre:not([class]):has(code) code,pre:not([class]):has(code) span{font-family:monospace}a:has(code:not([class]):only-child){background-color:var(--db-adaptive-bg-inverted-contrast-max-default);color:var(--db-adaptive-on-bg-inverted-default)}a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)){color:var(--db-adaptive-on-bg-inverted-hovered);cursor:var(--db-overwrite-cursor,pointer)}a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input),a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(textarea){cursor:auto}a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=checkbox]),a:has(code:not([class]):only-child):hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=radio]:not(:checked)){cursor:pointer}a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)){color:var(--db-adaptive-on-bg-inverted-pressed);cursor:var(--db-overwrite-cursor,pointer)}a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input),a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(textarea){cursor:auto}a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=checkbox]),a:has(code:not([class]):only-child):active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=radio]:not(:checked)){cursor:pointer}a:has(code:not([class]):only-child)>code{color:inherit}code:not([class]){background-color:var(--db-adaptive-bg-inverted-contrast-max-default);color:var(--db-adaptive-on-bg-inverted-default);padding-block:var(--db-spacing-fixed-3xs);padding-inline:var(--db-spacing-fixed-2xs)}code:not([class]),code:not([class]) span{font-family:monospace}blockquote:not([class]){margin:0;padding:var(--db-spacing-fixed-sm) var(--db-spacing-fixed-md)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}.db-interactive-elevation,[data-interactive=elevation]{box-shadow:var(--db-elevation-md);cursor:pointer}@media screen and (prefers-reduced-motion:no-preference){.db-interactive-elevation,[data-interactive=elevation]{transition:box-shadow var(--db-transition-duration-fast) var(--db-transition-timing-functional)}}.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true]),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true]){box-shadow:var(--db-elevation-lg);cursor:var(--db-overwrite-cursor,pointer)}.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true]):is(input),.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true]):is(textarea),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true]):is(input),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true]):is(textarea){cursor:auto}.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true]):is(input[type=checkbox]),.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true]):is(input[type=radio]:not(:checked)),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true]):is(input[type=checkbox]),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true]):is(input[type=radio]:not(:checked)){cursor:pointer}.db-interactive-elevation:active:not(:disabled,[aria-disabled=true]),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true]){box-shadow:var(--db-elevation-sm);cursor:var(--db-overwrite-cursor,pointer)}.db-interactive-elevation:active:not(:disabled,[aria-disabled=true]):is(input),.db-interactive-elevation:active:not(:disabled,[aria-disabled=true]):is(textarea),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true]):is(input),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true]):is(textarea){cursor:auto}.db-interactive-elevation:active:not(:disabled,[aria-disabled=true]):is(input[type=checkbox]),.db-interactive-elevation:active:not(:disabled,[aria-disabled=true]):is(input[type=radio]:not(:checked)),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true]):is(input[type=checkbox]),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true]):is(input[type=radio]:not(:checked)){cursor:pointer}
|
|
1
|
+
@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}.db-interactive-elevation,[data-interactive=elevation]{box-shadow:var(--db-elevation-md);cursor:pointer}@media screen and (prefers-reduced-motion:no-preference){.db-interactive-elevation,[data-interactive=elevation]{transition:box-shadow var(--db-transition-duration-fast) var(--db-transition-timing-functional)}}.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)){box-shadow:var(--db-elevation-lg);cursor:var(--db-overwrite-cursor,pointer)}.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input),.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(textarea),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(textarea){cursor:auto}.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=checkbox]),.db-interactive-elevation:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=radio]:not(:checked)),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=checkbox]),[data-interactive=elevation]:hover:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=radio]:not(:checked)){cursor:pointer}.db-interactive-elevation:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)){box-shadow:var(--db-elevation-sm);cursor:var(--db-overwrite-cursor,pointer)}.db-interactive-elevation:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input),.db-interactive-elevation:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(textarea),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(textarea){cursor:auto}.db-interactive-elevation:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=checkbox]),.db-interactive-elevation:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=radio]:not(:checked)),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=checkbox]),[data-interactive=elevation]:active:not(:disabled,[aria-disabled=true],[tabindex="-1"],:has(:disabled)):is(input[type=radio]:not(:checked)){cursor:pointer}
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -126,12 +110,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
126
110
|
|
|
127
111
|
@layer variables {}
|
|
128
112
|
|
|
129
|
-
/* Use for body tags like <p> */
|
|
130
|
-
/* Use for headline tags like <h1> */
|
|
131
|
-
/**
|
|
132
|
-
* @mixin screen-min-max
|
|
133
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
134
|
-
*/
|
|
135
113
|
.db-density-expressive,
|
|
136
114
|
[data-density=expressive] {
|
|
137
115
|
/* stylelint-disable-next-line at-rule-prelude-no-invalid,layer-name-pattern */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -120,12 +104,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
120
104
|
|
|
121
105
|
@layer variables {}
|
|
122
106
|
|
|
123
|
-
/* Use for body tags like <p> */
|
|
124
|
-
/* Use for headline tags like <h1> */
|
|
125
|
-
/**
|
|
126
|
-
* @mixin screen-min-max
|
|
127
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
128
|
-
*/
|
|
129
107
|
.db-density-expressive,
|
|
130
108
|
[data-density=expressive] {
|
|
131
109
|
/* stylelint-disable-next-line at-rule-prelude-no-invalid,layer-name-pattern */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -120,12 +104,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
120
104
|
|
|
121
105
|
@layer variables {}
|
|
122
106
|
|
|
123
|
-
/* Use for body tags like <p> */
|
|
124
|
-
/* Use for headline tags like <h1> */
|
|
125
|
-
/**
|
|
126
|
-
* @mixin screen-min-max
|
|
127
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
128
|
-
*/
|
|
129
107
|
@layer variables {}
|
|
130
108
|
|
|
131
109
|
@layer variables {}
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -120,12 +104,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
120
104
|
|
|
121
105
|
@layer variables {}
|
|
122
106
|
|
|
123
|
-
/* Use for body tags like <p> */
|
|
124
|
-
/* Use for headline tags like <h1> */
|
|
125
|
-
/**
|
|
126
|
-
* @mixin screen-min-max
|
|
127
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
128
|
-
*/
|
|
129
107
|
@layer variables {}
|
|
130
108
|
|
|
131
109
|
.db-density-regular,
|
|
@@ -32,12 +32,10 @@
|
|
|
32
32
|
|
|
33
33
|
$font-sizes: "3xl", "2xl", "xl", "lg", "md", "sm", "xs", "2xs", "3xs";
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
- %db-overwrite-font-size-md
|
|
40
|
-
*/
|
|
35
|
+
// Generates 3 types of placeholders, e.g.:
|
|
36
|
+
// - %db-component-variables-md
|
|
37
|
+
// - %db-font-size-md
|
|
38
|
+
// - %db-overwrite-font-size-md
|
|
41
39
|
@mixin generate-font-sizes() {
|
|
42
40
|
@each $font-size in $font-sizes {
|
|
43
41
|
%db-component-variables-#{$font-size} {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
// Use for body tags like <p>
|
|
2
2
|
|
|
3
3
|
$db-type-body-3xs: var(--db-type-body-3xs);
|
|
4
4
|
$db-type-body-2xs: var(--db-type-body-2xs);
|
|
@@ -10,7 +10,7 @@ $db-type-body-xl: var(--db-type-body-xl);
|
|
|
10
10
|
$db-type-body-2xl: var(--db-type-body-2xl);
|
|
11
11
|
$db-type-body-3xl: var(--db-type-body-3xl);
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
// Use for headline tags like <h1>
|
|
14
14
|
|
|
15
15
|
$db-type-headline-3xs: var(--db-type-headline-3xs);
|
|
16
16
|
$db-type-headline-2xs: var(--db-type-headline-2xs);
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
.db-font-size-3xl,
|
|
@@ -318,6 +302,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
318
302
|
--db-icon-font-size: var(--db-base-headline-icon-font-size-3xs);
|
|
319
303
|
}
|
|
320
304
|
}
|
|
321
|
-
|
|
322
|
-
/* Use for body tags like <p> */
|
|
323
|
-
/* Use for headline tags like <h1> */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -114,6 +98,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
114
98
|
@layer variables {}
|
|
115
99
|
|
|
116
100
|
@layer variables {}
|
|
117
|
-
|
|
118
|
-
/* Use for body tags like <p> */
|
|
119
|
-
/* Use for headline tags like <h1> */
|