federalist-basic-report-theme 0.1.0 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +13 -0
- data/_sass/uswds/_all.scss +1 -0
- data/_sass/uswds/components/_accordions.scss +150 -0
- data/_sass/uswds/components/_alerts.scss +128 -0
- data/_sass/uswds/components/_banner.scss +203 -0
- data/_sass/uswds/components/_footer.scss +522 -0
- data/_sass/uswds/components/_forms.scss +156 -0
- data/_sass/uswds/components/_graphic-list.scss +35 -0
- data/_sass/uswds/components/_header.scss +216 -0
- data/_sass/uswds/components/_hero.scss +37 -0
- data/_sass/uswds/components/_layout.scss +36 -0
- data/_sass/uswds/components/_media-block.scss +12 -0
- data/_sass/uswds/components/_navigation.scss +561 -0
- data/_sass/uswds/components/_search.scss +111 -0
- data/_sass/uswds/components/_section.scss +37 -0
- data/_sass/uswds/components/_sidenav.scss +31 -0
- data/_sass/uswds/components/_skipnav.scss +19 -0
- data/_sass/uswds/core/_base.scss +36 -0
- data/_sass/uswds/core/_defaults.scss +8 -0
- data/_sass/uswds/core/_fonts.scss +65 -0
- data/_sass/uswds/core/_grid-settings.scss +3 -0
- data/_sass/uswds/core/_grid.scss +198 -0
- data/_sass/uswds/core/_utilities.scss +252 -0
- data/_sass/uswds/core/_variables-vendor.scss +12 -0
- data/_sass/uswds/core/_variables.scss +159 -0
- data/_sass/uswds/elements/_buttons.scss +217 -0
- data/_sass/uswds/elements/_embed.scss +26 -0
- data/_sass/uswds/elements/_figure.scss +13 -0
- data/_sass/uswds/elements/_inputs.scss +368 -0
- data/_sass/uswds/elements/_labels.scss +20 -0
- data/_sass/uswds/elements/_list.scss +32 -0
- data/_sass/uswds/elements/_table.scss +55 -0
- data/_sass/uswds/elements/_typography.scss +240 -0
- data/_sass/uswds/lib/_bourbon-deprecated-upcoming.scss +411 -0
- data/_sass/uswds/lib/_bourbon.scss +87 -0
- data/_sass/uswds/lib/_neat-helpers.scss +11 -0
- data/_sass/uswds/lib/_neat.scss +23 -0
- data/_sass/uswds/lib/_normalize.scss +424 -0
- data/_sass/uswds/lib/addons/_border-color.scss +26 -0
- data/_sass/uswds/lib/addons/_border-radius.scss +48 -0
- data/_sass/uswds/lib/addons/_border-style.scss +25 -0
- data/_sass/uswds/lib/addons/_border-width.scss +25 -0
- data/_sass/uswds/lib/addons/_buttons.scss +64 -0
- data/_sass/uswds/lib/addons/_clearfix.scss +25 -0
- data/_sass/uswds/lib/addons/_ellipsis.scss +30 -0
- data/_sass/uswds/lib/addons/_font-stacks.scss +31 -0
- data/_sass/uswds/lib/addons/_hide-text.scss +27 -0
- data/_sass/uswds/lib/addons/_margin.scss +26 -0
- data/_sass/uswds/lib/addons/_padding.scss +26 -0
- data/_sass/uswds/lib/addons/_position.scss +48 -0
- data/_sass/uswds/lib/addons/_prefixer.scss +66 -0
- data/_sass/uswds/lib/addons/_retina-image.scss +25 -0
- data/_sass/uswds/lib/addons/_size.scss +51 -0
- data/_sass/uswds/lib/addons/_text-inputs.scss +113 -0
- data/_sass/uswds/lib/addons/_timing-functions.scss +34 -0
- data/_sass/uswds/lib/addons/_triangle.scss +63 -0
- data/_sass/uswds/lib/addons/_word-wrap.scss +29 -0
- data/_sass/uswds/lib/css3/_animation.scss +43 -0
- data/_sass/uswds/lib/css3/_appearance.scss +3 -0
- data/_sass/uswds/lib/css3/_backface-visibility.scss +3 -0
- data/_sass/uswds/lib/css3/_background-image.scss +42 -0
- data/_sass/uswds/lib/css3/_background.scss +55 -0
- data/_sass/uswds/lib/css3/_border-image.scss +59 -0
- data/_sass/uswds/lib/css3/_calc.scss +4 -0
- data/_sass/uswds/lib/css3/_columns.scss +47 -0
- data/_sass/uswds/lib/css3/_filter.scss +4 -0
- data/_sass/uswds/lib/css3/_flex-box.scss +287 -0
- data/_sass/uswds/lib/css3/_font-face.scss +24 -0
- data/_sass/uswds/lib/css3/_font-feature-settings.scss +4 -0
- data/_sass/uswds/lib/css3/_hidpi-media-query.scss +10 -0
- data/_sass/uswds/lib/css3/_hyphens.scss +4 -0
- data/_sass/uswds/lib/css3/_image-rendering.scss +14 -0
- data/_sass/uswds/lib/css3/_keyframes.scss +36 -0
- data/_sass/uswds/lib/css3/_linear-gradient.scss +38 -0
- data/_sass/uswds/lib/css3/_perspective.scss +8 -0
- data/_sass/uswds/lib/css3/_placeholder.scss +8 -0
- data/_sass/uswds/lib/css3/_radial-gradient.scss +39 -0
- data/_sass/uswds/lib/css3/_selection.scss +42 -0
- data/_sass/uswds/lib/css3/_text-decoration.scss +19 -0
- data/_sass/uswds/lib/css3/_transform.scss +15 -0
- data/_sass/uswds/lib/css3/_transition.scss +71 -0
- data/_sass/uswds/lib/css3/_user-select.scss +3 -0
- data/_sass/uswds/lib/functions/_assign-inputs.scss +11 -0
- data/_sass/uswds/lib/functions/_contains-falsy.scss +20 -0
- data/_sass/uswds/lib/functions/_contains.scss +26 -0
- data/_sass/uswds/lib/functions/_is-length.scss +11 -0
- data/_sass/uswds/lib/functions/_is-light.scss +21 -0
- data/_sass/uswds/lib/functions/_is-number.scss +11 -0
- data/_sass/uswds/lib/functions/_is-size.scss +13 -0
- data/_sass/uswds/lib/functions/_modular-scale.scss +69 -0
- data/_sass/uswds/lib/functions/_new-breakpoint.scss +49 -0
- data/_sass/uswds/lib/functions/_private.scss +114 -0
- data/_sass/uswds/lib/functions/_px-to-em.scss +13 -0
- data/_sass/uswds/lib/functions/_px-to-rem.scss +15 -0
- data/_sass/uswds/lib/functions/_shade.scss +24 -0
- data/_sass/uswds/lib/functions/_strip-units.scss +17 -0
- data/_sass/uswds/lib/functions/_tint.scss +24 -0
- data/_sass/uswds/lib/functions/_transition-property-name.scss +22 -0
- data/_sass/uswds/lib/functions/_unpack.scss +27 -0
- data/_sass/uswds/lib/grid/_box-sizing.scss +15 -0
- data/_sass/uswds/lib/grid/_direction-context.scss +33 -0
- data/_sass/uswds/lib/grid/_display-context.scss +28 -0
- data/_sass/uswds/lib/grid/_fill-parent.scss +22 -0
- data/_sass/uswds/lib/grid/_media.scss +92 -0
- data/_sass/uswds/lib/grid/_omega.scss +87 -0
- data/_sass/uswds/lib/grid/_outer-container.scss +34 -0
- data/_sass/uswds/lib/grid/_pad.scss +25 -0
- data/_sass/uswds/lib/grid/_private.scss +35 -0
- data/_sass/uswds/lib/grid/_row.scss +52 -0
- data/_sass/uswds/lib/grid/_shift.scss +50 -0
- data/_sass/uswds/lib/grid/_span-columns.scss +94 -0
- data/_sass/uswds/lib/grid/_to-deprecate.scss +97 -0
- data/_sass/uswds/lib/grid/_visual-grid.scss +42 -0
- data/_sass/uswds/lib/helpers/_convert-units.scss +21 -0
- data/_sass/uswds/lib/helpers/_directional-values.scss +96 -0
- data/_sass/uswds/lib/helpers/_font-source-declaration.scss +43 -0
- data/_sass/uswds/lib/helpers/_gradient-positions-parser.scss +13 -0
- data/_sass/uswds/lib/helpers/_linear-angle-parser.scss +25 -0
- data/_sass/uswds/lib/helpers/_linear-gradient-parser.scss +41 -0
- data/_sass/uswds/lib/helpers/_linear-positions-parser.scss +61 -0
- data/_sass/uswds/lib/helpers/_linear-side-corner-parser.scss +31 -0
- data/_sass/uswds/lib/helpers/_radial-arg-parser.scss +69 -0
- data/_sass/uswds/lib/helpers/_radial-gradient-parser.scss +50 -0
- data/_sass/uswds/lib/helpers/_radial-positions-parser.scss +18 -0
- data/_sass/uswds/lib/helpers/_render-gradients.scss +26 -0
- data/_sass/uswds/lib/helpers/_shape-size-stripper.scss +10 -0
- data/_sass/uswds/lib/helpers/_str-to-num.scss +50 -0
- data/_sass/uswds/lib/mixins/_clearfix.scss +25 -0
- data/_sass/uswds/lib/settings/_asset-pipeline.scss +7 -0
- data/_sass/uswds/lib/settings/_disable-warnings.scss +13 -0
- data/_sass/uswds/lib/settings/_grid.scss +51 -0
- data/_sass/uswds/lib/settings/_prefixer.scss +9 -0
- data/_sass/uswds/lib/settings/_px-to-em.scss +1 -0
- data/_sass/uswds/lib/settings/_visual-grid.scss +27 -0
- data/_sass/uswds/uswds.scss +42 -0
- data/assets/uswds/fonts/merriweather-bold-webfont.eot +0 -0
- data/assets/uswds/fonts/merriweather-bold-webfont.ttf +0 -0
- data/assets/uswds/fonts/merriweather-bold-webfont.woff +0 -0
- data/assets/uswds/fonts/merriweather-bold-webfont.woff2 +0 -0
- data/assets/uswds/fonts/merriweather-italic-webfont.eot +0 -0
- data/assets/uswds/fonts/merriweather-italic-webfont.ttf +0 -0
- data/assets/uswds/fonts/merriweather-italic-webfont.woff +0 -0
- data/assets/uswds/fonts/merriweather-italic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/merriweather-light-webfont.eot +0 -0
- data/assets/uswds/fonts/merriweather-light-webfont.ttf +0 -0
- data/assets/uswds/fonts/merriweather-light-webfont.woff +0 -0
- data/assets/uswds/fonts/merriweather-light-webfont.woff2 +0 -0
- data/assets/uswds/fonts/merriweather-regular-webfont.eot +0 -0
- data/assets/uswds/fonts/merriweather-regular-webfont.ttf +0 -0
- data/assets/uswds/fonts/merriweather-regular-webfont.woff +0 -0
- data/assets/uswds/fonts/merriweather-regular-webfont.woff2 +0 -0
- data/assets/uswds/fonts/sourcesanspro-bold-webfont.eot +0 -0
- data/assets/uswds/fonts/sourcesanspro-bold-webfont.ttf +0 -0
- data/assets/uswds/fonts/sourcesanspro-bold-webfont.woff +0 -0
- data/assets/uswds/fonts/sourcesanspro-bold-webfont.woff2 +0 -0
- data/assets/uswds/fonts/sourcesanspro-italic-webfont.eot +0 -0
- data/assets/uswds/fonts/sourcesanspro-italic-webfont.ttf +0 -0
- data/assets/uswds/fonts/sourcesanspro-italic-webfont.woff +0 -0
- data/assets/uswds/fonts/sourcesanspro-italic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/sourcesanspro-light-webfont.eot +0 -0
- data/assets/uswds/fonts/sourcesanspro-light-webfont.ttf +0 -0
- data/assets/uswds/fonts/sourcesanspro-light-webfont.woff +0 -0
- data/assets/uswds/fonts/sourcesanspro-light-webfont.woff2 +0 -0
- data/assets/uswds/fonts/sourcesanspro-regular-webfont.eot +0 -0
- data/assets/uswds/fonts/sourcesanspro-regular-webfont.ttf +0 -0
- data/assets/uswds/fonts/sourcesanspro-regular-webfont.woff +0 -0
- data/assets/uswds/fonts/sourcesanspro-regular-webfont.woff2 +0 -0
- data/assets/uswds/img/alerts/error.png +0 -0
- data/assets/uswds/img/alerts/error.svg +17 -0
- data/assets/uswds/img/alerts/info.png +0 -0
- data/assets/uswds/img/alerts/info.svg +18 -0
- data/assets/uswds/img/alerts/success.png +0 -0
- data/assets/uswds/img/alerts/success.svg +12 -0
- data/assets/uswds/img/alerts/warning.png +0 -0
- data/assets/uswds/img/alerts/warning.svg +16 -0
- data/assets/uswds/img/angle-arrow-down-hover.png +0 -0
- data/assets/uswds/img/angle-arrow-down-hover.svg +1 -0
- data/assets/uswds/img/angle-arrow-down-primary-hover.png +0 -0
- data/assets/uswds/img/angle-arrow-down-primary-hover.svg +1 -0
- data/assets/uswds/img/angle-arrow-down-primary.png +0 -0
- data/assets/uswds/img/angle-arrow-down-primary.svg +1 -0
- data/assets/uswds/img/angle-arrow-down.png +0 -0
- data/assets/uswds/img/angle-arrow-down.svg +1 -0
- data/assets/uswds/img/angle-arrow-up-primary-hover.png +0 -0
- data/assets/uswds/img/angle-arrow-up-primary-hover.svg +1 -0
- data/assets/uswds/img/angle-arrow-up-primary.png +0 -0
- data/assets/uswds/img/angle-arrow-up-primary.svg +1 -0
- data/assets/uswds/img/arrow-both.png +0 -0
- data/assets/uswds/img/arrow-both.svg +1 -0
- data/assets/uswds/img/arrow-down.png +0 -0
- data/assets/uswds/img/arrow-down.svg +1 -0
- data/assets/uswds/img/arrow-right.png +0 -0
- data/assets/uswds/img/arrow-right.svg +1 -0
- data/assets/uswds/img/circle-124.png +0 -0
- data/assets/uswds/img/close-primary.png +0 -0
- data/assets/uswds/img/close-primary.svg +16 -0
- data/assets/uswds/img/close.png +0 -0
- data/assets/uswds/img/close.svg +12 -0
- data/assets/uswds/img/correct8.png +0 -0
- data/assets/uswds/img/correct8.svg +1 -0
- data/assets/uswds/img/correct9.png +0 -0
- data/assets/uswds/img/correct9.svg +1 -0
- data/assets/uswds/img/external-link-alt-hover.png +0 -0
- data/assets/uswds/img/external-link-alt-hover.svg +1 -0
- data/assets/uswds/img/external-link-alt.png +0 -0
- data/assets/uswds/img/external-link-alt.svg +1 -0
- data/assets/uswds/img/external-link-hover.png +0 -0
- data/assets/uswds/img/external-link-hover.svg +1 -0
- data/assets/uswds/img/external-link.png +0 -0
- data/assets/uswds/img/external-link.svg +1 -0
- data/assets/uswds/img/favicons/favicon-114.png +0 -0
- data/assets/uswds/img/favicons/favicon-144.png +0 -0
- data/assets/uswds/img/favicons/favicon-16.png +0 -0
- data/assets/uswds/img/favicons/favicon-192.png +0 -0
- data/assets/uswds/img/favicons/favicon-40.png +0 -0
- data/assets/uswds/img/favicons/favicon-57.png +0 -0
- data/assets/uswds/img/favicons/favicon-72.png +0 -0
- data/assets/uswds/img/favicons/favicon.ico +0 -0
- data/assets/uswds/img/favicons/favicon.png +0 -0
- data/assets/uswds/img/hero.png +0 -0
- data/assets/uswds/img/icon-dot-gov.svg +1 -0
- data/assets/uswds/img/icon-https.svg +1 -0
- data/assets/uswds/img/logo-img.png +0 -0
- data/assets/uswds/img/minus-alt.png +0 -0
- data/assets/uswds/img/minus-alt.svg +1 -0
- data/assets/uswds/img/minus.png +0 -0
- data/assets/uswds/img/minus.svg +1 -0
- data/assets/uswds/img/plus-alt.png +0 -0
- data/assets/uswds/img/plus-alt.svg +1 -0
- data/assets/uswds/img/plus.png +0 -0
- data/assets/uswds/img/plus.svg +1 -0
- data/assets/uswds/img/search-alt.png +0 -0
- data/assets/uswds/img/search-alt.svg +1 -0
- data/assets/uswds/img/search-primary.png +0 -0
- data/assets/uswds/img/search-primary.svg +12 -0
- data/assets/uswds/img/search.png +0 -0
- data/assets/uswds/img/search.svg +1 -0
- data/assets/uswds/img/social-icons/png/facebook25.png +0 -0
- data/assets/uswds/img/social-icons/png/rss25.png +0 -0
- data/assets/uswds/img/social-icons/png/twitter16.png +0 -0
- data/assets/uswds/img/social-icons/png/youtube15.png +0 -0
- data/assets/uswds/img/social-icons/svg/facebook25.svg +1 -0
- data/assets/uswds/img/social-icons/svg/rss25.svg +1 -0
- data/assets/uswds/img/social-icons/svg/twitter16.svg +1 -0
- data/assets/uswds/img/social-icons/svg/youtube15.svg +1 -0
- data/assets/uswds/img/us_flag_small.png +0 -0
- data/assets/uswds/js/uswds.js +1930 -0
- data/assets/uswds/js/uswds.min.js +2 -0
- data/assets/uswds/js/uswds.min.js.map +1 -0
- metadata +251 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 05227e2cfa3eaea3739425a50f2f2a166718bd684b808466d1b47d7f17336ac6
|
4
|
+
data.tar.gz: d079b2783f46b17554a66a8aad3ba708f56228aa7152bb7a3f828c6adbd0153a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0b6e961bbcfa2743e86b0e45152d285d6d4e5e6a8ad3e65951b83016c89c54d483053ab81a8ba05822f6f2ca285d7d42640fca26bba7f4d0796ab354414a688
|
7
|
+
data.tar.gz: bb48e42c06a5683848c5d267b1d6b3dfb66b8bb0c9ffc97b57fe1dab60ef19598e8e976dbd2c44d2a48b2759a319e2bc3e8eb9975c0221d672ebaab2665c7cd4
|
data/README.md
CHANGED
@@ -148,6 +148,19 @@ When your theme is released, only the files in `_layouts`, `_includes`, `_sass`
|
|
148
148
|
To add a custom directory to your theme-gem, please edit the regexp in `federalist-basic-report-theme.gemspec` accordingly.
|
149
149
|
|
150
150
|
|
151
|
+
## Release
|
152
|
+
|
153
|
+
Publishing to rubygems is handled by CI.
|
154
|
+
|
155
|
+
To create a new release, simply bump the version in
|
156
|
+
`federalist-basic-report-theme.gemspec`, commit, and tag the release. e.g.
|
157
|
+
|
158
|
+
$ export version=v0.1.0
|
159
|
+
$ git checkout master
|
160
|
+
$ git tag $version
|
161
|
+
$ git push origin $version
|
162
|
+
|
163
|
+
|
151
164
|
## Contributing
|
152
165
|
|
153
166
|
See [CONTRIBUTING](CONTRIBUTING.md) for additional information.
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'uswds';
|
@@ -0,0 +1,150 @@
|
|
1
|
+
// Variables
|
2
|
+
|
3
|
+
$accordion-border: 3px solid $color-gray-lightest;
|
4
|
+
|
5
|
+
// Accordion Styles
|
6
|
+
|
7
|
+
$icon-size: $spacing-md-small;
|
8
|
+
$h-padding: $spacing-medium;
|
9
|
+
$v-padding: $spacing-md-small;
|
10
|
+
|
11
|
+
@mixin accordion-list-styles {
|
12
|
+
@include unstyled-list;
|
13
|
+
color: $color-base;
|
14
|
+
margin: 0;
|
15
|
+
padding: 0;
|
16
|
+
width: 100%;
|
17
|
+
}
|
18
|
+
|
19
|
+
@mixin accordion-list-item-styles {
|
20
|
+
background-color: $color-gray-lightest;
|
21
|
+
font-family: $font-sans;
|
22
|
+
list-style: none;
|
23
|
+
margin-bottom: $spacing-x-small;
|
24
|
+
width: 100%;
|
25
|
+
}
|
26
|
+
|
27
|
+
// scss-lint:disable PropertyCount
|
28
|
+
@mixin accordion-button-styles {
|
29
|
+
@include button-unstyled;
|
30
|
+
background-color: $color-gray-lightest;
|
31
|
+
background-image: url('#{$image-path}/minus.png');
|
32
|
+
background-image: url('#{$image-path}/minus.svg');
|
33
|
+
background-position: right $h-padding center;
|
34
|
+
background-repeat: no-repeat;
|
35
|
+
background-size: $icon-size;
|
36
|
+
color: $color-base;
|
37
|
+
cursor: pointer;
|
38
|
+
display: inline-block;
|
39
|
+
font-family: $font-sans;
|
40
|
+
font-weight: $font-bold;
|
41
|
+
margin: 0;
|
42
|
+
padding: $v-padding ($h-padding * 2 + $icon-size) $v-padding $h-padding;
|
43
|
+
width: 100%;
|
44
|
+
|
45
|
+
&:hover {
|
46
|
+
background-color: $color-gray-lighter;
|
47
|
+
color: $color-base;
|
48
|
+
}
|
49
|
+
|
50
|
+
h1,
|
51
|
+
h2,
|
52
|
+
h3,
|
53
|
+
h4,
|
54
|
+
h5,
|
55
|
+
h6 {
|
56
|
+
margin: 0;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
// scss-lint:enable PropertyCount
|
60
|
+
|
61
|
+
@mixin accordion-button-unopened-styles {
|
62
|
+
background-image: url('#{$image-path}/plus.png');
|
63
|
+
background-image: url('#{$image-path}/plus.svg');
|
64
|
+
background-repeat: no-repeat;
|
65
|
+
background-size: $icon-size;
|
66
|
+
}
|
67
|
+
|
68
|
+
@mixin accordion-nested-list {
|
69
|
+
> ul li ul {
|
70
|
+
list-style: disc;
|
71
|
+
> li > ul {
|
72
|
+
list-style: circle;
|
73
|
+
> li > ul {
|
74
|
+
list-style: square;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
.usa-accordion,
|
81
|
+
.usa-accordion-bordered {
|
82
|
+
@include accordion-list-styles;
|
83
|
+
@include accordion-nested-list;
|
84
|
+
|
85
|
+
+ .usa-accordion,
|
86
|
+
+ .usa-accordion-bordered {
|
87
|
+
margin-top: $spacing-small;
|
88
|
+
}
|
89
|
+
|
90
|
+
// TODO deprecated ruleset based on old accordion.
|
91
|
+
> ul {
|
92
|
+
@include accordion-list-styles;
|
93
|
+
|
94
|
+
// TODO deprecated ruleset based on old accordion.
|
95
|
+
> li {
|
96
|
+
@include accordion-list-item-styles;
|
97
|
+
}
|
98
|
+
|
99
|
+
// TODO deprecated ruleset based on old accordion.
|
100
|
+
button {
|
101
|
+
@include accordion-button-styles;
|
102
|
+
}
|
103
|
+
|
104
|
+
// TODO deprecated ruleset based on old accordion.
|
105
|
+
[aria-expanded=false] {
|
106
|
+
@include accordion-button-unopened-styles;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
> li {
|
111
|
+
@include accordion-list-item-styles;
|
112
|
+
}
|
113
|
+
|
114
|
+
}
|
115
|
+
|
116
|
+
.usa-accordion-bordered {
|
117
|
+
.usa-accordion-content {
|
118
|
+
border-bottom: $accordion-border;
|
119
|
+
border-left: $accordion-border;
|
120
|
+
border-right: $accordion-border;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
.usa-accordion-content {
|
125
|
+
background-color: $color-white;
|
126
|
+
overflow: auto;
|
127
|
+
padding: $spacing-md-small $spacing-medium;
|
128
|
+
|
129
|
+
> *:first-child {
|
130
|
+
margin-top: 0;
|
131
|
+
}
|
132
|
+
|
133
|
+
> *:last-child {
|
134
|
+
margin-bottom: 0;
|
135
|
+
}
|
136
|
+
|
137
|
+
&:not([aria-hidden]) {
|
138
|
+
@include sr-only();
|
139
|
+
}
|
140
|
+
|
141
|
+
@include accessibly-hidden();
|
142
|
+
}
|
143
|
+
|
144
|
+
.usa-accordion-button {
|
145
|
+
@include accordion-button-styles;
|
146
|
+
}
|
147
|
+
|
148
|
+
.usa-accordion-button[aria-expanded=false] {
|
149
|
+
@include accordion-button-unopened-styles;
|
150
|
+
}
|
@@ -0,0 +1,128 @@
|
|
1
|
+
// Alert variables ---------- //
|
2
|
+
$usa-custom-alerts: () !default;
|
3
|
+
$usa-custom-alerts-bar: () !default;
|
4
|
+
|
5
|
+
$usa-alerts: (
|
6
|
+
success: $color-green-lightest,
|
7
|
+
warning: $color-gold-lightest,
|
8
|
+
error: $color-secondary-lightest,
|
9
|
+
info: $color-primary-alt-lightest
|
10
|
+
);
|
11
|
+
|
12
|
+
$usa-alerts-bar: (
|
13
|
+
success: $color-green,
|
14
|
+
warning: $color-gold,
|
15
|
+
error: $color-secondary,
|
16
|
+
info: $color-primary-alt
|
17
|
+
);
|
18
|
+
|
19
|
+
$alerts: map-merge($usa-alerts, $usa-custom-alerts);
|
20
|
+
$alerts-bar: map-merge($usa-alerts-bar, $usa-custom-alerts-bar);
|
21
|
+
|
22
|
+
$h-padding: $spacing-medium;
|
23
|
+
$bar-size: $spacing-small;
|
24
|
+
$left-padding: $h-padding + $bar-size;
|
25
|
+
$icon-size: 3rem;
|
26
|
+
|
27
|
+
.usa-alert {
|
28
|
+
background-color: $color-gray-lightest;
|
29
|
+
background-position: $h-padding $h-padding;
|
30
|
+
background-repeat: no-repeat;
|
31
|
+
background-size: 5.2rem; // TODO abrituary number based on svg size maybe?
|
32
|
+
padding-bottom: $h-padding * 0.7;
|
33
|
+
padding-left: $left-padding;
|
34
|
+
padding-right: $h-padding;
|
35
|
+
padding-top: $h-padding;
|
36
|
+
position: relative;
|
37
|
+
|
38
|
+
&::before {
|
39
|
+
background-color: darken($color-gray-lightest, 40%);
|
40
|
+
content: '';
|
41
|
+
height: 100%;
|
42
|
+
left: 0;
|
43
|
+
position: absolute;
|
44
|
+
top: 0;
|
45
|
+
width: $bar-size;
|
46
|
+
}
|
47
|
+
|
48
|
+
a {
|
49
|
+
color: $color-primary-darker;
|
50
|
+
|
51
|
+
&:focus,
|
52
|
+
&:hover {
|
53
|
+
color: $color-primary-darkest;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
ul {
|
58
|
+
margin-bottom: 0;
|
59
|
+
margin-top: $spacing-small;
|
60
|
+
padding-left: $spacing-small;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
.usa-alert-slim {
|
65
|
+
background-position: $h-padding $spacing-small;
|
66
|
+
padding-bottom: $spacing-small;
|
67
|
+
padding-top: $spacing-small;
|
68
|
+
|
69
|
+
.usa-alert-text:only-child {
|
70
|
+
margin-bottom: $spacing-x-small;
|
71
|
+
padding-top: $spacing-x-small;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
.usa-alert-icon {
|
76
|
+
display: table-cell;
|
77
|
+
padding-right: $spacing-small;
|
78
|
+
}
|
79
|
+
|
80
|
+
.usa-alert-body {
|
81
|
+
display: table-cell;
|
82
|
+
vertical-align: top;
|
83
|
+
}
|
84
|
+
|
85
|
+
.usa-alert-heading {
|
86
|
+
margin-top: 0;
|
87
|
+
margin-bottom: 0;
|
88
|
+
}
|
89
|
+
|
90
|
+
.usa-alert-text {
|
91
|
+
font-family: $font-sans;
|
92
|
+
margin-bottom: 0;
|
93
|
+
margin-top: 0;
|
94
|
+
}
|
95
|
+
|
96
|
+
.usa-alert-text:only-child {
|
97
|
+
margin-bottom: $spacing-small;
|
98
|
+
padding-top: $spacing-x-small;
|
99
|
+
}
|
100
|
+
|
101
|
+
@each $name, $bgcolor in $alerts {
|
102
|
+
.usa-alert-#{$name} {
|
103
|
+
background-color: $bgcolor;
|
104
|
+
background-image: url('#{$image-path}/alerts/#{$name}.png');
|
105
|
+
background-image: url('#{$image-path}/alerts/#{$name}.svg');
|
106
|
+
|
107
|
+
&::before {
|
108
|
+
background-color: map-get($alerts-bar, $name);
|
109
|
+
}
|
110
|
+
|
111
|
+
.usa-alert-body {
|
112
|
+
padding-left: $icon-size + $h-padding;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
.usa-alert-no_icon {
|
118
|
+
background-image: none;
|
119
|
+
}
|
120
|
+
|
121
|
+
.usa-alert-paragraph {
|
122
|
+
width: $text-max-width;
|
123
|
+
}
|
124
|
+
|
125
|
+
// Deprecated
|
126
|
+
.usa-alert {
|
127
|
+
margin-top: 1.5em; // TODO deprecate
|
128
|
+
}
|
@@ -0,0 +1,203 @@
|
|
1
|
+
.usa-banner {
|
2
|
+
background-color: $color-gray-lightest;
|
3
|
+
padding-bottom: 0.7rem;
|
4
|
+
|
5
|
+
@include media($small-screen) {
|
6
|
+
font-size: $h6-font-size;
|
7
|
+
padding-bottom: 0;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
.usa-banner-content {
|
12
|
+
@include padding(null $site-margins-mobile 3px $site-margins-mobile);
|
13
|
+
background-color: transparent;
|
14
|
+
font-size: $h5-font-size;
|
15
|
+
padding-top: 2rem;
|
16
|
+
width: 100%;
|
17
|
+
|
18
|
+
@include media($medium-screen) {
|
19
|
+
padding-bottom: 2.3rem;
|
20
|
+
padding-top: 4rem;
|
21
|
+
}
|
22
|
+
|
23
|
+
@include media($nav-width) {
|
24
|
+
@include padding(null $site-margins);
|
25
|
+
}
|
26
|
+
|
27
|
+
p {
|
28
|
+
&:first-child {
|
29
|
+
margin-top: 1rem;
|
30
|
+
|
31
|
+
@include media($medium-screen) {
|
32
|
+
margin-top: 0;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
.usa-banner-inner {
|
39
|
+
@include outer-container($site-max-width);
|
40
|
+
@include padding(null $site-margins-mobile);
|
41
|
+
|
42
|
+
@include media($nav-width) {
|
43
|
+
@include padding(null $site-margins);
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
.usa-banner-header {
|
48
|
+
@include padding(0.55rem null);
|
49
|
+
font-size: 1.2rem;
|
50
|
+
font-weight: $font-normal;
|
51
|
+
|
52
|
+
@include media($small-screen) {
|
53
|
+
@include padding(0 null);
|
54
|
+
}
|
55
|
+
|
56
|
+
p {
|
57
|
+
@include margin(0 null);
|
58
|
+
display: inline;
|
59
|
+
overflow: hidden;
|
60
|
+
vertical-align: middle;
|
61
|
+
|
62
|
+
@include media($small-screen) {
|
63
|
+
@include margin(2px null);
|
64
|
+
display: inline-block;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
img {
|
69
|
+
float: left;
|
70
|
+
margin-right: 1rem;
|
71
|
+
margin-top: 1px;
|
72
|
+
width: 2.4rem;
|
73
|
+
|
74
|
+
@include media($small-screen) {
|
75
|
+
margin-right: 0.7rem;
|
76
|
+
width: 2rem;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
.usa-banner-header-expanded {
|
82
|
+
align-items: center;
|
83
|
+
border-bottom: 1px solid $color-gray-light;
|
84
|
+
display: flex;
|
85
|
+
font-size: $h5-font-size;
|
86
|
+
min-height: 5.6rem;
|
87
|
+
padding-right: 3rem;
|
88
|
+
|
89
|
+
@include media($small-screen) {
|
90
|
+
border-bottom: none;
|
91
|
+
display: block;
|
92
|
+
font-size: 1.2rem;
|
93
|
+
font-weight: $font-normal;
|
94
|
+
min-height: 0;
|
95
|
+
padding-right: 0;
|
96
|
+
}
|
97
|
+
|
98
|
+
> .usa-banner-inner {
|
99
|
+
margin-left: 0;
|
100
|
+
|
101
|
+
@include media($small-screen) {
|
102
|
+
margin-left: auto;
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
img {
|
107
|
+
margin-right: 2.4rem;
|
108
|
+
|
109
|
+
@include media($small-screen) {
|
110
|
+
margin-right: 0.7rem;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
p {
|
115
|
+
line-height: $heading-line-height;
|
116
|
+
vertical-align: top;
|
117
|
+
|
118
|
+
@include media($small-screen) {
|
119
|
+
line-height: $base-line-height;
|
120
|
+
vertical-align: middle;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
.usa-banner-button {
|
126
|
+
@include button-unstyled;
|
127
|
+
@include padding(1.3rem null null 4.8rem);
|
128
|
+
background-position-x: right;
|
129
|
+
color: $color-primary;
|
130
|
+
display: block;
|
131
|
+
font-size: 1.2rem;
|
132
|
+
height: 4.3rem;
|
133
|
+
left: 0;
|
134
|
+
position: absolute;
|
135
|
+
text-decoration: underline;
|
136
|
+
top: 0;
|
137
|
+
width: 100%;
|
138
|
+
|
139
|
+
@include media($small-screen) {
|
140
|
+
@include padding(0 null null 0);
|
141
|
+
/* stylelint-disable declaration-block-no-ignored-properties */
|
142
|
+
display: inline;
|
143
|
+
height: auto;
|
144
|
+
margin-left: 3px;
|
145
|
+
position: relative;
|
146
|
+
vertical-align: middle;
|
147
|
+
width: auto;
|
148
|
+
/* stylelint-enable */
|
149
|
+
}
|
150
|
+
|
151
|
+
&:hover {
|
152
|
+
color: $color-primary-darker;
|
153
|
+
text-decoration: underline;
|
154
|
+
}
|
155
|
+
|
156
|
+
&[aria-expanded=false] {
|
157
|
+
@include display-icon(angle-arrow-down-primary, after, 1rem, 0, hover);
|
158
|
+
background-image: none;
|
159
|
+
|
160
|
+
&::after {
|
161
|
+
background-position-y: 1px;
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
&[aria-expanded=true] {
|
166
|
+
@include display-icon(close, after, 1.3rem, 0, no-hover);
|
167
|
+
background-image: none;
|
168
|
+
height: 5.6rem;
|
169
|
+
|
170
|
+
@include media($small-screen) {
|
171
|
+
@include display-icon(angle-arrow-up-primary, after, 1rem, 0, hover);
|
172
|
+
height: initial;
|
173
|
+
padding: 0;
|
174
|
+
position: relative;
|
175
|
+
|
176
|
+
&::after {
|
177
|
+
background-position-y: 1px;
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
&::after {
|
182
|
+
position: absolute;
|
183
|
+
right: 1.5rem;
|
184
|
+
top: 2.15rem;
|
185
|
+
|
186
|
+
@include media($small-screen) {
|
187
|
+
position: static;
|
188
|
+
}
|
189
|
+
}
|
190
|
+
|
191
|
+
.usa-banner-button-text {
|
192
|
+
display: none;
|
193
|
+
|
194
|
+
@include media($small-screen) {
|
195
|
+
display: inline;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
}
|
199
|
+
}
|
200
|
+
|
201
|
+
.usa-banner-icon {
|
202
|
+
width: 3.8rem;
|
203
|
+
}
|