@department-of-veterans-affairs/css-library 0.7.4 → 0.8.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/dist/fonts/bitter-bold.ttf +0 -0
- package/dist/fonts/bitter-bold.woff2 +0 -0
- package/dist/fonts/bitter-regular.ttf +0 -0
- package/dist/fonts/bitter-regular.woff2 +0 -0
- package/dist/stylesheets/_mixins.scss +452 -0
- package/dist/stylesheets/base/fonts.css +1589 -0
- package/dist/stylesheets/base/utils.css +137 -0
- package/dist/stylesheets/base/va.css +1843 -0
- package/dist/{full.css → stylesheets/core.css} +341 -2299
- package/dist/stylesheets/formation-overrides/_variables.scss +170 -0
- package/dist/stylesheets/formation-overrides/core/base.css +64 -0
- package/dist/stylesheets/formation-overrides/core/fonts.css +46 -0
- package/dist/stylesheets/formation-overrides/elements/buttons.css +562 -0
- package/dist/stylesheets/formation-overrides/elements/inputs.css +384 -0
- package/dist/stylesheets/formation-overrides/elements/labels.css +28 -0
- package/dist/stylesheets/formation-overrides/elements/lists.css +57 -0
- package/dist/stylesheets/formation-overrides/elements/table.css +78 -0
- package/dist/stylesheets/formation-overrides/elements/typography.css +274 -0
- package/dist/stylesheets/mobile-typography.css +13 -0
- package/dist/stylesheets/modules/m-action-link.css +1443 -0
- package/dist/stylesheets/modules/m-additional-info.css +39 -0
- package/dist/stylesheets/modules/m-alert.css +254 -0
- package/dist/stylesheets/modules/m-breadcrumbs.css +96 -0
- package/dist/stylesheets/modules/m-button.css +153 -0
- package/dist/stylesheets/modules/m-dropdown.css +47 -0
- package/dist/stylesheets/modules/m-emergency-banner.css +33 -0
- package/dist/stylesheets/modules/m-external-link.css +14 -0
- package/dist/stylesheets/modules/m-form-elements.css +231 -0
- package/dist/stylesheets/modules/m-form-process.css +219 -0
- package/dist/stylesheets/modules/m-homepage-hero.css +76 -0
- package/dist/stylesheets/modules/m-hub-page-link-list.css +40 -0
- package/dist/stylesheets/modules/m-loading-indicator.css +41 -0
- package/dist/stylesheets/modules/m-maintenance-banner.css +33 -0
- package/dist/stylesheets/modules/m-megamenu.css +365 -0
- package/dist/stylesheets/modules/m-modal.css +117 -0
- package/dist/stylesheets/modules/m-nav-linklist.css +49 -0
- package/dist/stylesheets/modules/m-nav-sidebar.css +349 -0
- package/dist/stylesheets/modules/m-omb-info.css +15 -0
- package/dist/stylesheets/modules/m-overlay.css +72 -0
- package/dist/stylesheets/modules/m-print.css +27 -0
- package/dist/stylesheets/modules/m-process-list.css +162 -0
- package/dist/stylesheets/modules/va-pagination.css +90 -0
- package/dist/stylesheets/modules/va-tabs.css +53 -0
- package/dist/stylesheets/shame.css +266 -0
- package/dist/tokens/css/variables.css +1 -1
- package/dist/tokens/scss/variables.scss +1 -1
- package/package.json +8 -6
- /package/dist/{base → stylesheets/base}/headings.css +0 -0
- /package/dist/{uswds-typography.css → stylesheets/uswds-typography.css} +0 -0
- /package/dist/{utilities.css → stylesheets/utilities.css} +0 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
|
+
working while we work on deprecation.
|
|
4
|
+
**/
|
|
5
|
+
.additional-info-content {
|
|
6
|
+
margin-top: 1em;
|
|
7
|
+
margin-bottom: 1em;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.additional-info-button {
|
|
11
|
+
text-decoration: none;
|
|
12
|
+
}
|
|
13
|
+
.additional-info-button:hover {
|
|
14
|
+
text-decoration: none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.additional-info-title {
|
|
18
|
+
border-bottom-right-radius: 1px;
|
|
19
|
+
border-bottom: 2px #005ea2 dotted;
|
|
20
|
+
color: #323a45;
|
|
21
|
+
}
|
|
22
|
+
.additional-info-title:hover {
|
|
23
|
+
color: #000000;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fa-angle-down {
|
|
27
|
+
color: #aeb0b5;
|
|
28
|
+
font-size: 16px !important;
|
|
29
|
+
margin: 0.3125rem;
|
|
30
|
+
transform: rotate(0deg);
|
|
31
|
+
transition: transform 0.15s linear;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.fa-angle-down.open {
|
|
35
|
+
transform: rotate(180deg);
|
|
36
|
+
transition: transform 0.15s linear;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/*# sourceMappingURL=m-additional-info.css.map */
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
|
+
working while we work on deprecation.
|
|
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
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
11
|
+
**/
|
|
12
|
+
/**
|
|
13
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
14
|
+
**/
|
|
15
|
+
.usa-alert {
|
|
16
|
+
background: none;
|
|
17
|
+
background-color: #f1f1f1;
|
|
18
|
+
border-left-style: solid;
|
|
19
|
+
border-left-width: 10px;
|
|
20
|
+
display: table;
|
|
21
|
+
padding: units(4) units(8) units(4) units(3);
|
|
22
|
+
width: 100%;
|
|
23
|
+
}
|
|
24
|
+
.usa-alert::before {
|
|
25
|
+
display: block;
|
|
26
|
+
width: auto;
|
|
27
|
+
background: none;
|
|
28
|
+
font-family: "Font Awesome 5 Free";
|
|
29
|
+
font-size: 1.25rem;
|
|
30
|
+
margin-right: units(2);
|
|
31
|
+
position: static;
|
|
32
|
+
font-weight: 900;
|
|
33
|
+
}
|
|
34
|
+
.usa-alert .usa-alert-body {
|
|
35
|
+
display: table-cell;
|
|
36
|
+
padding-left: 0;
|
|
37
|
+
padding-right: 0;
|
|
38
|
+
width: 100%;
|
|
39
|
+
vertical-align: middle;
|
|
40
|
+
}
|
|
41
|
+
.usa-alert-heading {
|
|
42
|
+
font-size: 1.25rem;
|
|
43
|
+
margin-top: 0;
|
|
44
|
+
padding-top: 0;
|
|
45
|
+
}
|
|
46
|
+
.usa-alert-text {
|
|
47
|
+
margin-top: units(2.5);
|
|
48
|
+
}
|
|
49
|
+
.usa-alert-text:only-child {
|
|
50
|
+
margin: 0;
|
|
51
|
+
padding: 0;
|
|
52
|
+
}
|
|
53
|
+
.usa-alert-text p:first-child {
|
|
54
|
+
margin-top: 0;
|
|
55
|
+
}
|
|
56
|
+
.usa-alert-text p:last-child {
|
|
57
|
+
margin-bottom: 0;
|
|
58
|
+
}
|
|
59
|
+
.usa-alert-text .usa-alert-heading + p:only-of-type {
|
|
60
|
+
margin-top: units(2.5);
|
|
61
|
+
}
|
|
62
|
+
.usa-alert-text ul {
|
|
63
|
+
padding-left: units(2.5);
|
|
64
|
+
}
|
|
65
|
+
.usa-alert-info {
|
|
66
|
+
border-left-color: #00a6d2;
|
|
67
|
+
}
|
|
68
|
+
.usa-alert-info::before {
|
|
69
|
+
content: "\f05a";
|
|
70
|
+
}
|
|
71
|
+
.usa-alert-info.background-color-only {
|
|
72
|
+
background-color: #e1f3f8;
|
|
73
|
+
}
|
|
74
|
+
.usa-alert-error {
|
|
75
|
+
border-left-color: #cd2026;
|
|
76
|
+
}
|
|
77
|
+
.usa-alert-error::before {
|
|
78
|
+
color: #cd2026;
|
|
79
|
+
content: "\f06a";
|
|
80
|
+
}
|
|
81
|
+
.usa-alert-error.background-color-only {
|
|
82
|
+
background-color: #f9dede;
|
|
83
|
+
}
|
|
84
|
+
.usa-alert-success {
|
|
85
|
+
border-left-color: #2e8540;
|
|
86
|
+
}
|
|
87
|
+
.usa-alert-success::before {
|
|
88
|
+
color: #2e8540;
|
|
89
|
+
content: "\f00c";
|
|
90
|
+
}
|
|
91
|
+
.usa-alert-success.background-color-only {
|
|
92
|
+
background-color: #e7f4e4;
|
|
93
|
+
}
|
|
94
|
+
.usa-alert-warning {
|
|
95
|
+
border-left-color: #fdb81e;
|
|
96
|
+
}
|
|
97
|
+
.usa-alert-warning::before {
|
|
98
|
+
content: "\f071";
|
|
99
|
+
}
|
|
100
|
+
.usa-alert-warning.background-color-only {
|
|
101
|
+
background-color: #fff1d2;
|
|
102
|
+
}
|
|
103
|
+
.usa-alert-continue {
|
|
104
|
+
border-left-color: #2e8540;
|
|
105
|
+
}
|
|
106
|
+
.usa-alert-continue::before {
|
|
107
|
+
color: #2e8540;
|
|
108
|
+
content: "\f023";
|
|
109
|
+
}
|
|
110
|
+
.usa-alert.background-color-only {
|
|
111
|
+
border-left: none;
|
|
112
|
+
padding: 1.25rem;
|
|
113
|
+
}
|
|
114
|
+
.usa-alert.background-color-only::before {
|
|
115
|
+
content: none;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.va-alert-close {
|
|
119
|
+
background-color: transparent;
|
|
120
|
+
color: #005ea2;
|
|
121
|
+
font-size: 1.40625rem;
|
|
122
|
+
padding: 0;
|
|
123
|
+
position: absolute;
|
|
124
|
+
margin: units(2);
|
|
125
|
+
right: 0;
|
|
126
|
+
top: 0;
|
|
127
|
+
width: auto;
|
|
128
|
+
z-index: 9;
|
|
129
|
+
}
|
|
130
|
+
.va-alert-close:hover {
|
|
131
|
+
background-color: transparent;
|
|
132
|
+
color: #1a4480;
|
|
133
|
+
}
|
|
134
|
+
.va-alert-close:active {
|
|
135
|
+
background-color: transparent;
|
|
136
|
+
color: #112e51;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
p.usa-alert-heading {
|
|
140
|
+
margin-top: 0;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.claims-list-alert {
|
|
144
|
+
margin-bottom: 1em;
|
|
145
|
+
margin-top: 0;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.va-alert-close-icon {
|
|
149
|
+
font-size: 1.1em !important;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.claims-alert-status {
|
|
153
|
+
margin-top: 0;
|
|
154
|
+
margin-bottom: 2em;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.claims-alert-header {
|
|
158
|
+
padding-bottom: 0 !important;
|
|
159
|
+
margin-top: 0;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.alerts-list {
|
|
163
|
+
list-style: none;
|
|
164
|
+
}
|
|
165
|
+
.alerts-list li {
|
|
166
|
+
margin-left: -0.4em;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.claims-alert-checkbox > label {
|
|
170
|
+
margin-top: 0;
|
|
171
|
+
margin-bottom: 0;
|
|
172
|
+
max-width: 100%;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.need-files-alert {
|
|
176
|
+
padding-bottom: 4em;
|
|
177
|
+
}
|
|
178
|
+
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
179
|
+
.need-files-alert {
|
|
180
|
+
padding-bottom: 1em;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.alert-with-details {
|
|
185
|
+
display: flex;
|
|
186
|
+
justify-content: space-between;
|
|
187
|
+
flex-direction: column;
|
|
188
|
+
}
|
|
189
|
+
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
190
|
+
.alert-with-details {
|
|
191
|
+
flex-direction: row;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.usa-alert-full-width {
|
|
196
|
+
background-color: #f1f1f1;
|
|
197
|
+
}
|
|
198
|
+
.usa-alert-full-width.dismissable-option-header {
|
|
199
|
+
display: none;
|
|
200
|
+
}
|
|
201
|
+
.usa-alert-full-width.dismissable-option-header.show-alert {
|
|
202
|
+
display: block;
|
|
203
|
+
}
|
|
204
|
+
.usa-alert-full-width.dismissable-option-header.dismissed {
|
|
205
|
+
display: none;
|
|
206
|
+
}
|
|
207
|
+
.usa-alert-full-width .usa-alert-dismiss {
|
|
208
|
+
position: absolute;
|
|
209
|
+
right: 0;
|
|
210
|
+
top: 5px;
|
|
211
|
+
cursor: pointer;
|
|
212
|
+
}
|
|
213
|
+
.usa-alert-full-width > .usa-alert {
|
|
214
|
+
border-left: none;
|
|
215
|
+
max-width: 1000px;
|
|
216
|
+
margin: 0 auto;
|
|
217
|
+
}
|
|
218
|
+
.usa-alert-full-width > .usa-alert .paragraph--type--expandable-text .field--name-field-text-expander .field__label {
|
|
219
|
+
display: none;
|
|
220
|
+
}
|
|
221
|
+
.usa-alert-full-width > .usa-alert .paragraph--type--expandable-text .field--name-field-text-expander .field__item {
|
|
222
|
+
font-size: 1.25rem;
|
|
223
|
+
margin-top: 0;
|
|
224
|
+
padding-top: 0;
|
|
225
|
+
font-weight: 700;
|
|
226
|
+
text-decoration: underline;
|
|
227
|
+
color: #1a4480;
|
|
228
|
+
cursor: pointer;
|
|
229
|
+
}
|
|
230
|
+
.usa-alert-full-width > .usa-alert .paragraph--type--expandable-text .field--type-text-long {
|
|
231
|
+
display: none;
|
|
232
|
+
}
|
|
233
|
+
.usa-alert-full-width > .usa-alert .paragraph--type--expandable-text .field--type-text-long .field__label {
|
|
234
|
+
display: none;
|
|
235
|
+
}
|
|
236
|
+
.usa-alert-full-width > .usa-alert .paragraph--type--expandable-text .field--type-text-long.expander-content-open {
|
|
237
|
+
display: block;
|
|
238
|
+
}
|
|
239
|
+
.usa-alert-full-width-warning {
|
|
240
|
+
border-top: 0.625rem solid #fdb81e;
|
|
241
|
+
}
|
|
242
|
+
.usa-alert-full-width-info, .usa-alert-full-width-information {
|
|
243
|
+
border-top: 0.625rem solid #00a6d2;
|
|
244
|
+
}
|
|
245
|
+
.usa-alert-full-width-info .usa-alert:before, .usa-alert-full-width-information .usa-alert:before {
|
|
246
|
+
content: "\f05a";
|
|
247
|
+
background: none;
|
|
248
|
+
font-size: 1.25rem;
|
|
249
|
+
margin-right: 0.9375rem;
|
|
250
|
+
position: static;
|
|
251
|
+
font-weight: 900;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/*# sourceMappingURL=m-alert.css.map */
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/**
|
|
3
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
4
|
+
working while we work on deprecation.
|
|
5
|
+
**/
|
|
6
|
+
.va-nav-breadcrumbs {
|
|
7
|
+
background: #ffffff;
|
|
8
|
+
color: #005ea2;
|
|
9
|
+
font-size: inherit;
|
|
10
|
+
padding: 1em 0;
|
|
11
|
+
}
|
|
12
|
+
.va-nav-breadcrumbs--gate {
|
|
13
|
+
margin-bottom: -1em;
|
|
14
|
+
}
|
|
15
|
+
.va-nav-breadcrumbs li {
|
|
16
|
+
display: inline-block;
|
|
17
|
+
margin: 0.25em 0;
|
|
18
|
+
padding: 0.25em 0 0.25em 0;
|
|
19
|
+
vertical-align: middle;
|
|
20
|
+
}
|
|
21
|
+
.va-nav-breadcrumbs li:after {
|
|
22
|
+
content: " › ";
|
|
23
|
+
display: inline-block;
|
|
24
|
+
padding: 0 0.35em;
|
|
25
|
+
}
|
|
26
|
+
.va-nav-breadcrumbs li:last-child:after {
|
|
27
|
+
content: "";
|
|
28
|
+
}
|
|
29
|
+
.va-nav-breadcrumbs li.active {
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
padding: 0.3em 0;
|
|
32
|
+
}
|
|
33
|
+
.va-nav-breadcrumbs li.active:after {
|
|
34
|
+
content: "";
|
|
35
|
+
}
|
|
36
|
+
.va-nav-breadcrumbs a {
|
|
37
|
+
color: #005ea2;
|
|
38
|
+
display: inline-block;
|
|
39
|
+
padding: 2px;
|
|
40
|
+
}
|
|
41
|
+
.va-nav-breadcrumbs a:hover {
|
|
42
|
+
background: rgba(0, 0, 0, 0.05);
|
|
43
|
+
}
|
|
44
|
+
.va-nav-breadcrumbs a[aria-current=page] {
|
|
45
|
+
color: #323a45 !important;
|
|
46
|
+
cursor: default;
|
|
47
|
+
font-weight: bold;
|
|
48
|
+
pointer-events: none;
|
|
49
|
+
text-decoration: none;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.va-nav-breadcrumbs-list {
|
|
53
|
+
font-size: 16px;
|
|
54
|
+
float: none !important;
|
|
55
|
+
position: relative;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* Mobile class declaration for React apps, manual override */
|
|
59
|
+
.va-nav-breadcrumbs--mobile li {
|
|
60
|
+
display: none;
|
|
61
|
+
}
|
|
62
|
+
.va-nav-breadcrumbs--mobile li:nth-last-child(2) {
|
|
63
|
+
display: inline-block;
|
|
64
|
+
}
|
|
65
|
+
.va-nav-breadcrumbs--mobile li:nth-last-child(2)::before {
|
|
66
|
+
content: " ‹";
|
|
67
|
+
display: inline-block;
|
|
68
|
+
padding: 0 0.15em;
|
|
69
|
+
}
|
|
70
|
+
.va-nav-breadcrumbs--mobile li:nth-last-child(2)::after {
|
|
71
|
+
content: "";
|
|
72
|
+
display: none;
|
|
73
|
+
padding: 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Activate the mobile breadcrumb at $small-screen breakpoint */
|
|
77
|
+
@media screen and (max-width: 481px) {
|
|
78
|
+
.va-nav-breadcrumbs li {
|
|
79
|
+
display: none;
|
|
80
|
+
}
|
|
81
|
+
.va-nav-breadcrumbs li:nth-last-child(2) {
|
|
82
|
+
display: inline-block;
|
|
83
|
+
}
|
|
84
|
+
.va-nav-breadcrumbs li:nth-last-child(2)::before {
|
|
85
|
+
content: " ‹";
|
|
86
|
+
display: inline-block;
|
|
87
|
+
padding: 0 0.15em;
|
|
88
|
+
}
|
|
89
|
+
.va-nav-breadcrumbs li:nth-last-child(2)::after {
|
|
90
|
+
content: "";
|
|
91
|
+
display: none;
|
|
92
|
+
padding: 0;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/*# sourceMappingURL=m-breadcrumbs.css.map */
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
|
+
working while we work on deprecation.
|
|
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
|
+
/uswds/dist/scss/lib/addons/_margin.scss
|
|
11
|
+
**/
|
|
12
|
+
/**
|
|
13
|
+
uswds/src/stylesheets/lib/helpers/_directional-values.scss
|
|
14
|
+
**/
|
|
15
|
+
.usa-button,
|
|
16
|
+
.usa-button-primary,
|
|
17
|
+
.usa-button:visited,
|
|
18
|
+
.usa-button-primary:visited,
|
|
19
|
+
button,
|
|
20
|
+
[type=button],
|
|
21
|
+
[type=submit],
|
|
22
|
+
[type=reset],
|
|
23
|
+
[type=image] {
|
|
24
|
+
-webkit-font-smoothing: inherit;
|
|
25
|
+
-moz-osx-font-smoothing: inherit;
|
|
26
|
+
background-color: #005ea2;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
font-size: 1.06rem;
|
|
29
|
+
}
|
|
30
|
+
.usa-button.usa-button-secondary,
|
|
31
|
+
.usa-button-primary.usa-button-secondary,
|
|
32
|
+
.usa-button:visited.usa-button-secondary,
|
|
33
|
+
.usa-button-primary:visited.usa-button-secondary,
|
|
34
|
+
button.usa-button-secondary,
|
|
35
|
+
[type=button].usa-button-secondary,
|
|
36
|
+
[type=submit].usa-button-secondary,
|
|
37
|
+
[type=reset].usa-button-secondary,
|
|
38
|
+
[type=image].usa-button-secondary {
|
|
39
|
+
background: transparent;
|
|
40
|
+
}
|
|
41
|
+
.usa-button.usa-button-secondary:focus, .usa-button.usa-button-secondary:hover,
|
|
42
|
+
.usa-button-primary.usa-button-secondary:focus,
|
|
43
|
+
.usa-button-primary.usa-button-secondary:hover,
|
|
44
|
+
.usa-button:visited.usa-button-secondary:focus,
|
|
45
|
+
.usa-button:visited.usa-button-secondary:hover,
|
|
46
|
+
.usa-button-primary:visited.usa-button-secondary:focus,
|
|
47
|
+
.usa-button-primary:visited.usa-button-secondary:hover,
|
|
48
|
+
button.usa-button-secondary:focus,
|
|
49
|
+
button.usa-button-secondary:hover,
|
|
50
|
+
[type=button].usa-button-secondary:focus,
|
|
51
|
+
[type=button].usa-button-secondary:hover,
|
|
52
|
+
[type=submit].usa-button-secondary:focus,
|
|
53
|
+
[type=submit].usa-button-secondary:hover,
|
|
54
|
+
[type=reset].usa-button-secondary:focus,
|
|
55
|
+
[type=reset].usa-button-secondary:hover,
|
|
56
|
+
[type=image].usa-button-secondary:focus,
|
|
57
|
+
[type=image].usa-button-secondary:hover {
|
|
58
|
+
background-color: #dce4ef;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.usa-button-primary {
|
|
62
|
+
color: #ffffff !important;
|
|
63
|
+
}
|
|
64
|
+
.usa-button-primary[href^=http] {
|
|
65
|
+
background-image: none;
|
|
66
|
+
text-decoration: none !important;
|
|
67
|
+
}
|
|
68
|
+
.usa-button-primary[href^=http]:after {
|
|
69
|
+
content: none;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.usa-accordion .usa-button-secondary:focus {
|
|
73
|
+
box-shadow: inset 0 0 0 2px #112e51, 0 0 3px #aeb0b5, 0 0 7px #aeb0b5;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.usa-accordion-button:active {
|
|
77
|
+
background-color: inherit;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.usa-button-disabled {
|
|
81
|
+
background-color: #d6d7d9;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.row.form-progress-buttons {
|
|
85
|
+
max-width: 29.375rem;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
button i.fa {
|
|
89
|
+
font-size: 0.75em;
|
|
90
|
+
}
|
|
91
|
+
button i.fa.before-text {
|
|
92
|
+
margin-right: 0.5em;
|
|
93
|
+
}
|
|
94
|
+
button i.fa.after-text {
|
|
95
|
+
margin-left: 0.5em;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
button.short {
|
|
99
|
+
font-weight: 500;
|
|
100
|
+
padding: 0.625rem;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.va-icon-link,
|
|
104
|
+
.va-icon-link[type=button] {
|
|
105
|
+
background: transparent;
|
|
106
|
+
border-radius: 0;
|
|
107
|
+
color: #005ea2 !important;
|
|
108
|
+
font-weight: normal;
|
|
109
|
+
line-height: 1.3;
|
|
110
|
+
margin: 0;
|
|
111
|
+
text-align: left;
|
|
112
|
+
-webkit-transition-duration: 0.3s;
|
|
113
|
+
transition-duration: 0.3s;
|
|
114
|
+
-webkit-transition-timing-function: ease-in-out;
|
|
115
|
+
transition-timing-function: ease-in-out;
|
|
116
|
+
-webkit-transition-property: color, background-color, border-color;
|
|
117
|
+
transition-property: color, background-color, border-color;
|
|
118
|
+
white-space: nowrap;
|
|
119
|
+
}
|
|
120
|
+
.va-icon-link:hover,
|
|
121
|
+
.va-icon-link[type=button]:hover {
|
|
122
|
+
background: #f1f1f1;
|
|
123
|
+
}
|
|
124
|
+
.va-icon-link .fa,
|
|
125
|
+
.va-icon-link[type=button] .fa {
|
|
126
|
+
display: inline-block;
|
|
127
|
+
font-size: 1.125rem;
|
|
128
|
+
}
|
|
129
|
+
.va-icon-link span,
|
|
130
|
+
.va-icon-link[type=button] span {
|
|
131
|
+
display: inline-block;
|
|
132
|
+
padding-left: 0.3125rem;
|
|
133
|
+
text-decoration: underline;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.va-btn-withicon > span {
|
|
137
|
+
display: flex;
|
|
138
|
+
align-items: center;
|
|
139
|
+
}
|
|
140
|
+
.va-btn-withicon svg {
|
|
141
|
+
display: none;
|
|
142
|
+
}
|
|
143
|
+
@media screen and (min-width: 768px), print and (min-width: 768px) {
|
|
144
|
+
.va-btn-withicon svg {
|
|
145
|
+
display: block;
|
|
146
|
+
height: 15px;
|
|
147
|
+
margin-right: 2.5px;
|
|
148
|
+
pointer-events: none;
|
|
149
|
+
width: 15px;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/*# sourceMappingURL=m-button.css.map */
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
|
+
working while we work on deprecation.
|
|
4
|
+
**/
|
|
5
|
+
.va-dropdown {
|
|
6
|
+
position: relative;
|
|
7
|
+
}
|
|
8
|
+
.va-dropdown-trigger {
|
|
9
|
+
background: transparent url("/assets/img/arrow-down-white.svg") no-repeat;
|
|
10
|
+
background-position: right 8px center;
|
|
11
|
+
background-size: 10px 10px;
|
|
12
|
+
border-radius: 0;
|
|
13
|
+
border-top: 3px solid transparent;
|
|
14
|
+
margin: 0;
|
|
15
|
+
padding: 9px 25px 8px 8px;
|
|
16
|
+
}
|
|
17
|
+
.va-dropdown-trigger:hover {
|
|
18
|
+
background-color: #005ea2;
|
|
19
|
+
}
|
|
20
|
+
.va-dropdown-trigger[aria-expanded=true] {
|
|
21
|
+
border-top-color: #8a7237;
|
|
22
|
+
background-color: #ffffff;
|
|
23
|
+
background-image: url("/assets/img/arrow-up.svg") !important;
|
|
24
|
+
color: #1b1b1b;
|
|
25
|
+
}
|
|
26
|
+
.va-dropdown-trigger[aria-expanded=true] path {
|
|
27
|
+
fill: currentColor;
|
|
28
|
+
}
|
|
29
|
+
.va-dropdown-panel {
|
|
30
|
+
background: #ffffff;
|
|
31
|
+
box-shadow: 0px 4px 10px -4px #1b1b1b;
|
|
32
|
+
color: #1b1b1b;
|
|
33
|
+
padding: 0.5rem;
|
|
34
|
+
position: absolute;
|
|
35
|
+
min-width: 100%;
|
|
36
|
+
z-index: 2;
|
|
37
|
+
}
|
|
38
|
+
.va-dropdown-panel a {
|
|
39
|
+
color: #005ea2;
|
|
40
|
+
display: inline-block;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
[id=helpmenu] {
|
|
44
|
+
width: 13.125rem;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/*# sourceMappingURL=m-dropdown.css.map */
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
|
+
working while we work on deprecation.
|
|
4
|
+
**/
|
|
5
|
+
.vads-c-emergency-banner .usa-alert {
|
|
6
|
+
align-items: flex-start;
|
|
7
|
+
display: flex;
|
|
8
|
+
font-size: 1rem;
|
|
9
|
+
padding: 12px 16px;
|
|
10
|
+
max-width: 650px;
|
|
11
|
+
}
|
|
12
|
+
.vads-c-emergency-banner .usa-alert::before {
|
|
13
|
+
color: unset;
|
|
14
|
+
margin-right: -22.5px;
|
|
15
|
+
}
|
|
16
|
+
.vads-c-emergency-banner .usa-alert .usa-alert-heading {
|
|
17
|
+
font-family: "Source Sans Pro";
|
|
18
|
+
font-size: 1rem;
|
|
19
|
+
margin-top: 4px;
|
|
20
|
+
margin-left: 30.5px;
|
|
21
|
+
}
|
|
22
|
+
.vads-c-emergency-banner .usa-alert .usa-alert-text {
|
|
23
|
+
margin-top: 0.625rem;
|
|
24
|
+
}
|
|
25
|
+
.vads-c-emergency-banner .usa-alert .va-alert-close {
|
|
26
|
+
margin-top: 4px;
|
|
27
|
+
}
|
|
28
|
+
.vads-c-emergency-banner .va-alert-close {
|
|
29
|
+
position: relative;
|
|
30
|
+
margin: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/*# sourceMappingURL=m-emergency-banner.css.map */
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Variables ported over from Formation so that we can keep those stylesheets
|
|
3
|
+
working while we work on deprecation.
|
|
4
|
+
**/
|
|
5
|
+
.external-link-icon-black {
|
|
6
|
+
background-image: url("/assets/img/exit-icon.png");
|
|
7
|
+
background-position: 100% 50%;
|
|
8
|
+
background-repeat: no-repeat;
|
|
9
|
+
background-size: 1em auto;
|
|
10
|
+
padding-right: 1.2em;
|
|
11
|
+
position: relative;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/*# sourceMappingURL=m-external-link.css.map */
|