@department-of-veterans-affairs/css-library 0.13.1-rc2 → 0.14.0-rc1
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/fonts.css +1596 -1
- package/dist/stylesheets/base/headings.css +1530 -1
- package/dist/stylesheets/base/utils.css +137 -1
- package/dist/stylesheets/base/va.css +407 -1
- package/dist/stylesheets/core.css +6470 -1
- package/dist/stylesheets/formation-overrides/core/base.css +64 -1
- package/dist/stylesheets/formation-overrides/core/fonts.css +46 -1
- package/dist/stylesheets/formation-overrides/elements/buttons.css +562 -1
- package/dist/stylesheets/formation-overrides/elements/inputs.css +384 -1
- package/dist/stylesheets/formation-overrides/elements/labels.css +28 -1
- package/dist/stylesheets/formation-overrides/elements/lists.css +57 -1
- package/dist/stylesheets/formation-overrides/elements/table.css +78 -1
- package/dist/stylesheets/formation-overrides/elements/typography.css +312 -1
- package/dist/stylesheets/mobile-typography.css +13 -1
- package/dist/stylesheets/modules/m-action-link.css +1454 -1
- package/dist/stylesheets/modules/m-additional-info.css +39 -1
- package/dist/stylesheets/modules/m-alert.css +256 -1
- package/dist/stylesheets/modules/m-breadcrumbs.css +96 -1
- package/dist/stylesheets/modules/m-button.css +153 -1
- package/dist/stylesheets/modules/m-dropdown.css +47 -1
- package/dist/stylesheets/modules/m-emergency-banner.css +33 -1
- package/dist/stylesheets/modules/m-external-link.css +14 -1
- package/dist/stylesheets/modules/m-form-elements.css +231 -1
- package/dist/stylesheets/modules/m-form-process.css +219 -1
- package/dist/stylesheets/modules/m-homepage-hero.css +76 -1
- package/dist/stylesheets/modules/m-hub-page-link-list.css +40 -1
- package/dist/stylesheets/modules/m-loading-indicator.css +45 -1
- package/dist/stylesheets/modules/m-maintenance-banner.css +33 -1
- package/dist/stylesheets/modules/m-megamenu.css +370 -1
- package/dist/stylesheets/modules/m-modal.css +121 -1
- package/dist/stylesheets/modules/m-nav-linklist.css +49 -1
- package/dist/stylesheets/modules/m-nav-sidebar.css +353 -1
- package/dist/stylesheets/modules/m-omb-info.css +5 -0
- package/dist/stylesheets/modules/m-overlay.css +72 -1
- package/dist/stylesheets/modules/m-print.css +27 -1
- package/dist/stylesheets/modules/m-process-list.css +162 -1
- package/dist/stylesheets/modules/va-pagination.css +90 -1
- package/dist/stylesheets/modules/va-tabs.css +53 -1
- package/dist/stylesheets/shame.css +267 -1
- package/dist/stylesheets/uswds-typography.css +4222 -1
- package/dist/stylesheets/utilities.css +15622 -1
- package/dist/tokens/css/variables.css +1 -1
- package/dist/tokens/scss/variables.scss +1 -1
- package/package.json +1 -1
|
@@ -1 +1,64 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
***THIS IS USWDS v1***
|
|
3
|
+
Original import: @import "~uswds/src/stylesheets/core/base";
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
7
|
+
working while we work on deprecation.
|
|
8
|
+
**/
|
|
9
|
+
/**
|
|
10
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
11
|
+
working while we work on deprecation.
|
|
12
|
+
**/
|
|
13
|
+
/**
|
|
14
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
15
|
+
**/
|
|
16
|
+
/**
|
|
17
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
18
|
+
**/
|
|
19
|
+
html {
|
|
20
|
+
box-sizing: border-box;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
*,
|
|
24
|
+
*::before,
|
|
25
|
+
*::after {
|
|
26
|
+
box-sizing: inherit;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
body {
|
|
30
|
+
background-color: #ffffff;
|
|
31
|
+
color: #1b1b1b;
|
|
32
|
+
overflow-x: hidden;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.lt-ie9 * {
|
|
36
|
+
filter: none !important; /* stylelint-disable-line declaration-no-important */
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
[hidden] {
|
|
40
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
input:not([disabled]):focus,
|
|
44
|
+
select:not([disabled]):focus,
|
|
45
|
+
textarea:not([disabled]):focus,
|
|
46
|
+
button:not([disabled]):focus {
|
|
47
|
+
outline: 2px solid #face00;
|
|
48
|
+
outline-offset: 2px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
iframe:focus,
|
|
52
|
+
[href]:focus,
|
|
53
|
+
[tabindex]:focus,
|
|
54
|
+
[contentEditable=true]:focus {
|
|
55
|
+
outline: 2px solid #face00;
|
|
56
|
+
outline-offset: 2px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.usa-focus {
|
|
60
|
+
outline: 2px solid #face00;
|
|
61
|
+
outline-offset: 2px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/*# sourceMappingURL=base.css.map */
|
|
@@ -1 +1,46 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
Original: @import "~uswds/src/stylesheets/core/fonts";
|
|
3
|
+
***THIS IS USWDS v1***
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
7
|
+
working while we work on deprecation.
|
|
8
|
+
**/
|
|
9
|
+
/**
|
|
10
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
11
|
+
working while we work on deprecation.
|
|
12
|
+
**/
|
|
13
|
+
/**
|
|
14
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
15
|
+
**/
|
|
16
|
+
/**
|
|
17
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
18
|
+
**/
|
|
19
|
+
/* stylelint-disable at-rule-empty-line-before */
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: "Merriweather";
|
|
22
|
+
font-style: normal;
|
|
23
|
+
font-weight: 300;
|
|
24
|
+
src: url("/assets/fonts/merriweather-light-webfont.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/merriweather-light-webfont.woff2") format("woff2"), url("/assets/fonts/merriweather-light-webfont.woff") format("woff"), url("/assets/fonts/merriweather-light-webfont.ttf") format("truetype"), url("/assets/fonts/merriweather-light-webfont.svg#Merriweather") format("svg");
|
|
25
|
+
}
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: "Merriweather";
|
|
28
|
+
font-style: normal;
|
|
29
|
+
font-weight: 400;
|
|
30
|
+
src: url("/assets/fonts/merriweather-regular-webfont.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/merriweather-regular-webfont.woff2") format("woff2"), url("/assets/fonts/merriweather-regular-webfont.woff") format("woff"), url("/assets/fonts/merriweather-regular-webfont.ttf") format("truetype"), url("/assets/fonts/merriweather-regular-webfont.svg#Merriweather") format("svg");
|
|
31
|
+
}
|
|
32
|
+
@font-face {
|
|
33
|
+
font-family: "Merriweather";
|
|
34
|
+
font-style: italic;
|
|
35
|
+
font-weight: 400;
|
|
36
|
+
src: url("/assets/fonts/merriweather-italic-webfont.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/merriweather-italic-webfont.woff2") format("woff2"), url("/assets/fonts/merriweather-italic-webfont.woff") format("woff"), url("/assets/fonts/merriweather-italic-webfont.ttf") format("truetype"), url("/assets/fonts/merriweather-italic-webfont.svg#Merriweather") format("svg");
|
|
37
|
+
}
|
|
38
|
+
@font-face {
|
|
39
|
+
font-family: "Merriweather";
|
|
40
|
+
font-style: normal;
|
|
41
|
+
font-weight: 700;
|
|
42
|
+
src: url("/assets/fonts/merriweather-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/merriweather-bold-webfont.woff2") format("woff2"), url("/assets/fonts/merriweather-bold-webfont.woff") format("woff"), url("/assets/fonts/merriweather-bold-webfont.ttf") format("truetype"), url("/assets/fonts/merriweather-bold-webfont.svg#Merriweather") format("svg");
|
|
43
|
+
}
|
|
44
|
+
/* stylelint-enable */
|
|
45
|
+
|
|
46
|
+
/*# sourceMappingURL=fonts.css.map */
|