@madgex/design-system 1.21.4 → 1.21.6
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/_tokens/css/_tokens.css +3 -2
- package/dist/_tokens/js/_tokens-module.js +20 -3
- package/dist/_tokens/scss/_tokens.scss +5 -3
- package/dist/css/index.css +15 -4
- package/package.json +1 -1
- package/src/components/tabs/tabs.scss +1 -1
- package/src/scss/core/_typography.scss +11 -0
- package/src/tokens/color.json +4 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 16 Aug 2019 09:00:35 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -43,8 +43,9 @@
|
|
|
43
43
|
--mds-color-neutral-lighter: #dddddd;
|
|
44
44
|
--mds-color-neutral-lightest: #f8f8f8;
|
|
45
45
|
--mds-color-neutral-darker: #333333;
|
|
46
|
-
--mds-color-text-base: #
|
|
46
|
+
--mds-color-text-base: #343433;
|
|
47
47
|
--mds-color-text-invert: #ffffff;
|
|
48
|
+
--mds-color-text-headers: #222222;
|
|
48
49
|
--mds-color-border: #dddddd;
|
|
49
50
|
--mds-font-family-base: "Helvetica", Arial, sans-serif;
|
|
50
51
|
--mds-font-size-base: 16px;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 16 Aug 2019 09:00:35 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
@@ -798,9 +798,9 @@ module.exports = {
|
|
|
798
798
|
},
|
|
799
799
|
"text": {
|
|
800
800
|
"base": {
|
|
801
|
-
"value": "#
|
|
801
|
+
"value": "#343433",
|
|
802
802
|
"original": {
|
|
803
|
-
"value": "#
|
|
803
|
+
"value": "#343433"
|
|
804
804
|
},
|
|
805
805
|
"name": "MdsColorTextBase",
|
|
806
806
|
"attributes": {
|
|
@@ -830,6 +830,23 @@ module.exports = {
|
|
|
830
830
|
"text",
|
|
831
831
|
"invert"
|
|
832
832
|
]
|
|
833
|
+
},
|
|
834
|
+
"headers": {
|
|
835
|
+
"value": "#222222",
|
|
836
|
+
"original": {
|
|
837
|
+
"value": "#222222"
|
|
838
|
+
},
|
|
839
|
+
"name": "MdsColorTextHeaders",
|
|
840
|
+
"attributes": {
|
|
841
|
+
"category": "color",
|
|
842
|
+
"type": "text",
|
|
843
|
+
"item": "headers"
|
|
844
|
+
},
|
|
845
|
+
"path": [
|
|
846
|
+
"color",
|
|
847
|
+
"text",
|
|
848
|
+
"headers"
|
|
849
|
+
]
|
|
833
850
|
}
|
|
834
851
|
},
|
|
835
852
|
"border": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
3
|
Do not edit directly
|
|
4
|
-
Generated on
|
|
4
|
+
Generated on Fri, 16 Aug 2019 09:00:35 GMT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
$mds-color-brand-1-base: #1b75bb !default;
|
|
@@ -43,8 +43,9 @@ $mds-color-neutral-base: #979797 !default;
|
|
|
43
43
|
$mds-color-neutral-lighter: #dddddd !default;
|
|
44
44
|
$mds-color-neutral-lightest: #f8f8f8 !default;
|
|
45
45
|
$mds-color-neutral-darker: #333333 !default;
|
|
46
|
-
$mds-color-text-base: #
|
|
46
|
+
$mds-color-text-base: #343433 !default;
|
|
47
47
|
$mds-color-text-invert: #ffffff !default;
|
|
48
|
+
$mds-color-text-headers: #222222 !default;
|
|
48
49
|
$mds-color-border: #dddddd !default;
|
|
49
50
|
$mds-font-family-base: "Helvetica", Arial, sans-serif !default;
|
|
50
51
|
$mds-font-size-base: 16px !default;
|
|
@@ -220,7 +221,8 @@ $tokens: (
|
|
|
220
221
|
),
|
|
221
222
|
'text': (
|
|
222
223
|
'base': $mds-color-text-base,
|
|
223
|
-
'invert': $mds-color-text-invert
|
|
224
|
+
'invert': $mds-color-text-invert,
|
|
225
|
+
'headers': $mds-color-text-headers
|
|
224
226
|
),
|
|
225
227
|
'border': $mds-color-border
|
|
226
228
|
),
|
package/dist/css/index.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
Do not edit directly
|
|
3
|
-
Generated on
|
|
3
|
+
Generated on Fri, 16 Aug 2019 09:00:35 GMT
|
|
4
4
|
*/
|
|
5
5
|
html,
|
|
6
6
|
body,
|
|
@@ -464,6 +464,17 @@ img {
|
|
|
464
464
|
|
|
465
465
|
body {
|
|
466
466
|
font-family: "Helvetica", Arial, sans-serif;
|
|
467
|
+
color: #343433;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
h1,
|
|
471
|
+
h2,
|
|
472
|
+
h3,
|
|
473
|
+
h4,
|
|
474
|
+
h5,
|
|
475
|
+
h6,
|
|
476
|
+
dl dt {
|
|
477
|
+
color: #222222;
|
|
467
478
|
}
|
|
468
479
|
|
|
469
480
|
html,
|
|
@@ -1455,7 +1466,7 @@ body {
|
|
|
1455
1466
|
width: 100%;
|
|
1456
1467
|
display: inline-block;
|
|
1457
1468
|
text-align: center;
|
|
1458
|
-
color: #
|
|
1469
|
+
color: #343433;
|
|
1459
1470
|
line-height: 1.15;
|
|
1460
1471
|
}
|
|
1461
1472
|
|
|
@@ -1467,13 +1478,13 @@ body {
|
|
|
1467
1478
|
|
|
1468
1479
|
.mds-button:link, .mds-button:visited, .mds-button:active {
|
|
1469
1480
|
text-decoration: none;
|
|
1470
|
-
color: #
|
|
1481
|
+
color: #343433;
|
|
1471
1482
|
}
|
|
1472
1483
|
|
|
1473
1484
|
.mds-button:hover, .mds-button:focus {
|
|
1474
1485
|
background-color: #f3bf41;
|
|
1475
1486
|
text-decoration: none;
|
|
1476
|
-
color: #
|
|
1487
|
+
color: #343433;
|
|
1477
1488
|
}
|
|
1478
1489
|
|
|
1479
1490
|
.mds-card {
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
body {
|
|
2
2
|
@extend .mds-font-body-copy;
|
|
3
3
|
font-family: $mds-font-family-base;
|
|
4
|
+
color: $mds-color-text-base;
|
|
4
5
|
}
|
|
5
6
|
|
|
6
7
|
h1 {
|
|
@@ -18,3 +19,13 @@ h3 {
|
|
|
18
19
|
h4 {
|
|
19
20
|
@extend .mds-font-body-copy;
|
|
20
21
|
}
|
|
22
|
+
|
|
23
|
+
h1,
|
|
24
|
+
h2,
|
|
25
|
+
h3,
|
|
26
|
+
h4,
|
|
27
|
+
h5,
|
|
28
|
+
h6,
|
|
29
|
+
dl dt {
|
|
30
|
+
color: $mds-color-text-headers;
|
|
31
|
+
}
|
package/src/tokens/color.json
CHANGED