Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2fd380f

Browse files
committed
Merge branch 'release/2.7.0'
2 parents1d855af +a86a672 commit2fd380f

File tree

54 files changed

+1173
-878
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1173
-878
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Lastly, refer to [Using the Boilerplate](#using-the-boilerplate) for basic guida
7373

7474
If you don't have Node or the ability to incorporate source files into a build process (Grunt, Gulp, Webpack, etc), follow these steps to manually use the FSA Style.
7575

76-
Download the latest assets:**https://github.com/usda-fsa/fsa-style/releases/download/2.6.1/fsa-style-2.6.1.zip**
76+
Download the latest assets:**https://github.com/usda-fsa/fsa-style/releases/download/2.7.0/fsa-style-2.7.0.zip**
7777

7878
####1. Visual Index
7979

‎package-lock.json‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name":"fsa-style",
33
"description":"Open Source CSS Framework of the USDA's FPAC Design System",
4-
"version":"2.6.1",
4+
"version":"2.7.0",
55
"main":"index.js",
66
"license":"SEE LICENSE in LICENSE.md",
77
"repository": {

‎src/boilerplate.html‎

Lines changed: 22 additions & 15 deletions
Large diffs are not rendered by default.

‎src/demo/rwd__btn-group.html‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
<spanclass="
2525
2626
fsa-btn-group
27-
fsa-btn-group--block
27+
fsa-btn-group--fill
2828
2929
fsa-btn-group--small@s
3030
fsa-btn-group--inline@s
3131
3232
fsa-btn-group--medium@m
3333
34-
fsa-btn-group--block@l
34+
fsa-btn-group--fill@l
3535
3636
"role="group"aria-label="Label describing this group">
3737
<buttonclass="fsa-btn-group__item"type="button">Label</button>
@@ -41,11 +41,11 @@
4141
</p>
4242
<code>
4343
<spanclass="docs-highlight">fsa-btn-group</span><br>
44-
<spanclass="docs-highlight@xs-only">fsa-btn-group--<strong>block</strong></span><br>
44+
<spanclass="docs-highlight@xs-only">fsa-btn-group--<strong>fill</strong></span><br>
4545
<spanclass="docs-highlight@s-only">fsa-btn-group--<strong>small@s</strong></span><br>
4646
<spanclass="docs-highlight@s-only docs-highlight@m-only">fsa-btn-group--<strong>inline@s</strong></span><br>
4747
<spanclass="docs-highlight@m">fsa-btn-group--<strong>medium@m</strong></span><br>
48-
<spanclass="docs-highlight@l">fsa-btn-group--<strong>block@l</strong></span>
48+
<spanclass="docs-highlight@l">fsa-btn-group--<strong>fill@l</strong></span>
4949
</code>
5050
</div>
5151
</div>

‎src/demo/rwd__buttons.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
<p>
2424
<buttonclass="
2525
fsa-btn
26-
fsa-btn--block
26+
fsa-btn--fill
2727
fsa-btn--inline@s
2828
fsa-btn--small@m
2929
fsa-btn--medium@l
3030
fsa-btn--plain@l">Label</button>
3131
</p>
3232
<codestyle="display: block;">
3333
<spanclass="docs-highlight">fsa-btn</span><br>
34-
<spanclass="docs-highlight@xs-only">fsa-btn--<strong>block</strong></span><br>
34+
<spanclass="docs-highlight@xs-only">fsa-btn--<strong>fill</strong></span><br>
3535
<spanclass="docs-highlight@s">fsa-btn--<strong>inline@s</strong></span><br>
3636
<spanclass="docs-highlight@m-only">fsa-btn--<strong>small@m</strong></span><br>
3737
<spanclass="docs-highlight@l">fsa-btn--<strong>medium@l</strong></span><br>

‎src/demo/rwd__input.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
<divclass="fsa-section">
2222
<divclass="fsa-section__bd">
2323
<p>
24-
<inputclass="fsa-input fsa-input--block@s fsa-input--large@s fsa-input--medium@m fsa-input--small@l fsa-input--inline@l"type="text"name="some_name"value="Text"placeholder="Placeholder">
24+
<inputclass="fsa-input fsa-input--fill@s fsa-input--large@s fsa-input--medium@m fsa-input--small@l fsa-input--inline@l"type="text"name="some_name"value="Text"placeholder="Placeholder">
2525
</p>
2626
<code><spanclass="docs-highlight">fsa-input</span></code><br>
27-
<code><spanclass="docs-highlight@s-only docs-highlight@m-only">fsa-input--<strong>block@s</strong></span></code><br>
27+
<code><spanclass="docs-highlight@s-only docs-highlight@m-only">fsa-input--<strong>fill@s</strong></span></code><br>
2828
<code><spanclass="docs-highlight@s-only">fsa-input--<strong>large@s</strong></span></code><br>
2929
<code><spanclass="docs-highlight@m-only">fsa-input--<strong>medium@m</strong></span></code><br>
3030
<code><spanclass="docs-highlight@l">fsa-input--<strong>small@l</strong></span></code><br>

‎src/demo/rwd__link-display.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
<divclass="fsa-section">
2727
<divclass="fsa-section__bd fsa-p-t--s">
2828
<divclass="fsa-text-size--4">
29-
<astyle="outline: 1px dashed #999;"class="fsa-link--block fsa-link--inline@s"href="https://en.wikipedia.org/wiki/Sierra_Nevada">Sierra Nevada mountains</a>
29+
<astyle="outline: 1px dashed #999;"class="fsa-link--fill fsa-link--inline@s"href="https://en.wikipedia.org/wiki/Sierra_Nevada">Sierra Nevada mountains</a>
3030
</div>
3131
<pclass="fsa-level fsa-level--justify-center fsa-m--s">
3232
<code>
33-
<spanclass="docs-highlight@xs-only">fsa-link--block</span><br>
33+
<spanclass="docs-highlight@xs-only">fsa-link--fill</span><br>
3434
<spanclass="docs-highlight@s">fsa-link--inline<strong>@s</strong></span><br>
3535
</code>
3636
</p>

‎src/demo/rwd__select.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<divclass="fsa-section">
2222
<divclass="fsa-section__bd">
2323
<p>
24-
<selectclass="fsa-select fsa-select--large@s fsa-select--block@m fsa-select--small@l fsa-select--inline@l"name="State">
24+
<selectclass="fsa-select fsa-select--large@s fsa-select--fill@m fsa-select--small@l fsa-select--inline@l"name="State">
2525
<optionvalue="none"selected="selected">- Select a State -</option>
2626
<optionvalue="AL">Alabama</option>
2727
<optionvalue="AK">Alaska</option>
@@ -78,7 +78,7 @@
7878
</p>
7979
<code><spanclass="docs-highlight">fsa-select</span></code><br>
8080
<code><spanclass="docs-highlight@s-only docs-highlight@m-only">fsa-select--<strong>large@s</strong></span></code><br>
81-
<code><spanclass="docs-highlight@m-only">fsa-select--<strong>block@m</strong></span></code><br>
81+
<code><spanclass="docs-highlight@m-only">fsa-select--<strong>fill@m</strong></span></code><br>
8282
<code><spanclass="docs-highlight@l-only">fsa-select--<strong>small@l</strong></span></code><br>
8383
<code><spanclass="docs-highlight@l-only">fsa-select--<strong>inline@l</strong></span></code>
8484
</div>

‎src/demo/rwd__stepped-control.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<p>Rerum saepe dolorem culpa nobis harum quae nam deleniti laudantium nemo velit perspiciatis ex, blanditiis possimus natus tempore ea aperiam praesentium quaerat repellendus doloremque? Aliquam assumenda temporibus vel distinctio! Quia.</p>
3636
<divclass="fsa-stepped-control fsa-stepped-control--sticky">
3737
<divclass="fsa-stepped-control__bd">
38-
<divclass="fsa-stepped-control__message fsa-stepped-control__message--block"role="status">
38+
<divclass="fsa-stepped-control__message fsa-stepped-control__message--fill"role="status">
3939
<strong>5</strong> of<strong>10</strong> Commodities are complete
4040
</div>
4141
<divclass="fsa-stepped-control__list">

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp