@department-of-veterans-affairs/css-library 0.8.1 → 0.8.3
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/stylesheets/base/va.css +1 -1
- package/dist/stylesheets/core.css +8 -2
- package/dist/stylesheets/formation-overrides/_variables.scss +3 -4
- package/dist/stylesheets/formation-overrides/elements/typography.css +7 -1
- package/dist/stylesheets/modules/m-action-link.css +3 -6
- package/dist/stylesheets/modules/m-alert.css +4 -4
- package/dist/stylesheets/modules/m-form-elements.css +1 -1
- package/dist/stylesheets/modules/m-form-process.css +1 -1
- package/dist/stylesheets/modules/m-megamenu.css +1 -0
- package/dist/stylesheets/uswds-typography.css +0 -23
- package/dist/tokens/css/variables.css +1 -1
- package/dist/tokens/scss/variables.scss +1 -1
- package/package.json +1 -1
|
@@ -4604,13 +4604,19 @@ caption {
|
|
|
4604
4604
|
*/
|
|
4605
4605
|
html {
|
|
4606
4606
|
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
4607
|
-
font-size:
|
|
4607
|
+
font-size: 16px;
|
|
4608
4608
|
}
|
|
4609
4609
|
|
|
4610
4610
|
body {
|
|
4611
4611
|
font-size: 16px;
|
|
4612
4612
|
}
|
|
4613
4613
|
|
|
4614
|
+
p {
|
|
4615
|
+
line-height: 1.5;
|
|
4616
|
+
margin-bottom: 1em;
|
|
4617
|
+
margin-top: 1em;
|
|
4618
|
+
}
|
|
4619
|
+
|
|
4614
4620
|
a {
|
|
4615
4621
|
color: #005ea2;
|
|
4616
4622
|
text-decoration: underline;
|
|
@@ -5755,7 +5761,7 @@ body {
|
|
|
5755
5761
|
}
|
|
5756
5762
|
|
|
5757
5763
|
html {
|
|
5758
|
-
font-size:
|
|
5764
|
+
font-size: 16px;
|
|
5759
5765
|
font-weight: 500;
|
|
5760
5766
|
}
|
|
5761
5767
|
|
|
@@ -46,7 +46,7 @@ $color-secondary-lightest: $color-red-lightest;
|
|
|
46
46
|
$color-blue-darkest: #112e51;
|
|
47
47
|
$color-primary-darkest: $color-blue-darkest;
|
|
48
48
|
|
|
49
|
-
$color-green: #
|
|
49
|
+
$color-green: #008817;
|
|
50
50
|
$color-green-lightest:#e7f4e4;
|
|
51
51
|
|
|
52
52
|
$color-green-light: #4aa564;
|
|
@@ -96,7 +96,7 @@ $spacing-x-small: scale-rem(0.5rem);
|
|
|
96
96
|
$spacing-md-small: scale-rem(1.5rem);
|
|
97
97
|
$spacing-medium: scale-rem(2rem);
|
|
98
98
|
|
|
99
|
-
$em-base:
|
|
99
|
+
$em-base: 16px;
|
|
100
100
|
$base-line-height: 1.5;
|
|
101
101
|
$heading-line-height: 1.3;
|
|
102
102
|
$text-max-width: scale-rem(70rem); // Note: USWDS value is 53rem;
|
|
@@ -151,7 +151,7 @@ $units:(
|
|
|
151
151
|
-15: -12,
|
|
152
152
|
);
|
|
153
153
|
|
|
154
|
-
// Variables used in vets-website
|
|
154
|
+
// Variables still used in vets-website
|
|
155
155
|
$grid-columns: 12 !default;
|
|
156
156
|
$button-border-radius: 5px !default;
|
|
157
157
|
$mm-gray: #f0f0f0; //Deprecated color, used in mega-menu
|
|
@@ -159,7 +159,6 @@ $color-transparent: rgba(#000, 0) !default;
|
|
|
159
159
|
$color-white: #ffffff !default;
|
|
160
160
|
$color-orange: #dd7533;
|
|
161
161
|
|
|
162
|
-
|
|
163
162
|
//===================================
|
|
164
163
|
// Z-index values
|
|
165
164
|
//===================================
|
|
@@ -31,13 +31,19 @@
|
|
|
31
31
|
|
|
32
32
|
html {
|
|
33
33
|
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
|
34
|
-
font-size:
|
|
34
|
+
font-size: 16px;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
body {
|
|
38
38
|
font-size: 16px;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
p {
|
|
42
|
+
line-height: 1.5;
|
|
43
|
+
margin-bottom: 1em;
|
|
44
|
+
margin-top: 1em;
|
|
45
|
+
}
|
|
46
|
+
|
|
41
47
|
a {
|
|
42
48
|
color: #005ea2;
|
|
43
49
|
text-decoration: underline;
|
|
@@ -1406,9 +1406,6 @@ a.vads-c-action-link--blue:before, a.vads-c-action-link--green:before, a.vads-c-
|
|
|
1406
1406
|
position: absolute;
|
|
1407
1407
|
left: 0px;
|
|
1408
1408
|
top: -4px;
|
|
1409
|
-
font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
|
|
1410
|
-
font-size: 1.06rem;
|
|
1411
|
-
line-height: 1.5;
|
|
1412
1409
|
}
|
|
1413
1410
|
|
|
1414
1411
|
a.vads-c-action-link--blue:before {
|
|
@@ -1416,7 +1413,7 @@ a.vads-c-action-link--blue:before {
|
|
|
1416
1413
|
}
|
|
1417
1414
|
|
|
1418
1415
|
a.vads-c-action-link--green:before {
|
|
1419
|
-
color: #
|
|
1416
|
+
color: #008817;
|
|
1420
1417
|
}
|
|
1421
1418
|
|
|
1422
1419
|
a.vads-c-action-link--white {
|
|
@@ -1433,11 +1430,11 @@ a.vads-c-action-link--white:before {
|
|
|
1433
1430
|
}
|
|
1434
1431
|
|
|
1435
1432
|
a.vads-c-action-link--white:hover {
|
|
1436
|
-
color: #
|
|
1433
|
+
color: #face00;
|
|
1437
1434
|
background-color: transparent;
|
|
1438
1435
|
}
|
|
1439
1436
|
a.vads-c-action-link--white:hover:before {
|
|
1440
|
-
color: #
|
|
1437
|
+
color: #face00;
|
|
1441
1438
|
}
|
|
1442
1439
|
|
|
1443
1440
|
/*# sourceMappingURL=m-action-link.css.map */
|
|
@@ -82,10 +82,10 @@
|
|
|
82
82
|
background-color: #f9dede;
|
|
83
83
|
}
|
|
84
84
|
.usa-alert-success {
|
|
85
|
-
border-left-color: #
|
|
85
|
+
border-left-color: #008817;
|
|
86
86
|
}
|
|
87
87
|
.usa-alert-success::before {
|
|
88
|
-
color: #
|
|
88
|
+
color: #008817;
|
|
89
89
|
content: "\f00c";
|
|
90
90
|
}
|
|
91
91
|
.usa-alert-success.background-color-only {
|
|
@@ -101,10 +101,10 @@
|
|
|
101
101
|
background-color: #fff1d2;
|
|
102
102
|
}
|
|
103
103
|
.usa-alert-continue {
|
|
104
|
-
border-left-color: #
|
|
104
|
+
border-left-color: #008817;
|
|
105
105
|
}
|
|
106
106
|
.usa-alert-continue::before {
|
|
107
|
-
color: #
|
|
107
|
+
color: #008817;
|
|
108
108
|
content: "\f023";
|
|
109
109
|
}
|
|
110
110
|
.usa-alert.background-color-only {
|
|
@@ -4198,27 +4198,4 @@ p, a, ol, ul, li, dl, dt, dd, form, label, button {
|
|
|
4198
4198
|
line-height: 1.5;
|
|
4199
4199
|
}
|
|
4200
4200
|
|
|
4201
|
-
/**
|
|
4202
|
-
USWDS paragraph style
|
|
4203
|
-
|
|
4204
|
-
p {
|
|
4205
|
-
line-height: 1.5;
|
|
4206
|
-
max-width: 68ex;
|
|
4207
|
-
margin-bottom: 0;
|
|
4208
|
-
margin-top: 0;
|
|
4209
|
-
}
|
|
4210
|
-
*/
|
|
4211
|
-
p {
|
|
4212
|
-
line-height: 1.5;
|
|
4213
|
-
max-width: 68ex;
|
|
4214
|
-
margin-bottom: 0;
|
|
4215
|
-
margin-top: 0;
|
|
4216
|
-
}
|
|
4217
|
-
* + p {
|
|
4218
|
-
margin-top: 1em;
|
|
4219
|
-
}
|
|
4220
|
-
p + * {
|
|
4221
|
-
margin-top: 1em;
|
|
4222
|
-
}
|
|
4223
|
-
|
|
4224
4201
|
/*# sourceMappingURL=uswds-typography.css.map */
|