bourbon 5.0.0.beta.7 → 5.0.0.beta.8
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.
- checksums.yaml +4 -4
- data/.npmignore +3 -1
- data/.ruby-version +1 -1
- data/.scss-lint.yml +4 -0
- data/CHANGELOG.md +145 -5
- data/CONTRIBUTING.md +24 -2
- data/LICENSE.md +1 -1
- data/README.md +64 -66
- data/RELEASING.md +7 -6
- data/bourbon.gemspec +6 -6
- data/bower.json +8 -7
- data/circle.yml +4 -1
- data/core/_bourbon.scss +3 -3
- data/core/bourbon/library/_contrast-switch.scss +5 -6
- data/core/bourbon/library/_ellipsis.scss +3 -4
- data/core/bourbon/library/_font-face.scss +10 -11
- data/core/bourbon/library/_hide-visually.scss +8 -5
- data/core/bourbon/library/_modular-scale.scss +5 -6
- data/core/bourbon/library/_position.scss +3 -5
- data/core/bourbon/library/_prefixer.scss +4 -5
- data/core/bourbon/library/_shade.scss +3 -4
- data/core/bourbon/library/_size.scss +3 -4
- data/core/bourbon/library/_tint.scss +3 -4
- data/core/bourbon/library/_triangle.scss +16 -16
- data/core/bourbon/library/_value-prefixer.scss +4 -5
- data/core/bourbon/utilities/_assign-inputs.scss +3 -4
- data/core/bourbon/utilities/_directional-property.scss +4 -5
- data/core/bourbon/utilities/{_retrieve-bourbon-setting.scss → _fetch-bourbon-setting.scss} +2 -2
- data/core/bourbon/utilities/_font-source-declaration.scss +5 -6
- data/core/bourbon/validators/_contains.scss +3 -4
- data/lib/bourbon.rb +2 -5
- data/lib/bourbon/generator.rb +1 -1
- data/lib/bourbon/version.rb +1 -1
- data/package.json +2 -1
- data/spec/bourbon/library/hide_visually_spec.rb +1 -1
- data/spec/bourbon/library/triangle_spec.rb +6 -6
- data/spec/bourbon/utilities/{retrieve_bourbon_setting_spec.rb → fetch_bourbon_setting_spec.rb} +4 -4
- data/spec/fixtures/library/font-face-2.scss +3 -3
- data/spec/fixtures/library/hide-visually.scss +1 -1
- data/spec/fixtures/library/triangle.scss +4 -4
- data/spec/fixtures/utilities/{retrieve-bourbon-setting.scss → fetch-bourbon-setting.scss} +2 -2
- metadata +20 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00c47bc77a0a4d58bb63c93c051b82c4d4719c0f
|
4
|
+
data.tar.gz: 8210d97cf62742815fc61bd4ac885681beb42a1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 497efe1789522f99495b35f804a602a6d4e666f2d0310b26752313ab69908bd6d819fa5ba1626f3e23e19c0408a58b120470fffe8276ae25e11f048c5fff302f
|
7
|
+
data.tar.gz: d8444e36753b29d51eada8bb04a9abc03fe977de7adf1b232d1cee671594d852d1d883e94c639f01dec60755a89cb3843bd4300ae537d5e3dbde4a44fdcca831
|
data/.npmignore
CHANGED
@@ -1,5 +1,7 @@
|
|
1
|
+
.github/
|
1
2
|
.gitignore
|
2
3
|
.hound.yml
|
4
|
+
.ruby-version
|
3
5
|
.sass-cache
|
4
6
|
.scss-lint.yml
|
5
7
|
_site
|
@@ -7,6 +9,7 @@ bin/
|
|
7
9
|
bourbon.gemspec
|
8
10
|
bower.json
|
9
11
|
circle.yml
|
12
|
+
CONTRIBUTING.md
|
10
13
|
features/
|
11
14
|
Gemfile
|
12
15
|
Gemfile.lock
|
@@ -14,5 +17,4 @@ lib/
|
|
14
17
|
pkg/
|
15
18
|
Rakefile
|
16
19
|
RELEASING.md
|
17
|
-
sache.json
|
18
20
|
spec/
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.1
|
data/.scss-lint.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -3,18 +3,40 @@
|
|
3
3
|
All notable changes to this project will be documented in this file. This
|
4
4
|
project adheres to [Semantic Versioning](http://semver.org).
|
5
5
|
|
6
|
-
## [Unreleased]
|
6
|
+
## [Unreleased (`master`)][unreleased]
|
7
7
|
|
8
8
|
Nothing at the moment.
|
9
9
|
|
10
|
-
[
|
10
|
+
[unreleased]: https://github.com/thoughtbot/bourbon/compare/v5.0.0.beta.8...HEAD
|
11
|
+
|
12
|
+
## [5.0.0-beta.8] - 2017-06-26
|
13
|
+
|
14
|
+
### Added
|
15
|
+
|
16
|
+
- A `style` property has been added to our `package.json`, which makes for easy
|
17
|
+
importing when using npm-sass, sass-module-importer and others.
|
18
|
+
|
19
|
+
### Changed
|
20
|
+
|
21
|
+
- The `triangle` mixin no longer has default argument values. The order of the
|
22
|
+
arguments also changed: `$width` and `$height` now come before `$color`.
|
23
|
+
|
24
|
+
### Fixed
|
25
|
+
|
26
|
+
- The `bourbon update` CLI command now works when Bourbon is installed using a
|
27
|
+
custom path.
|
28
|
+
- Fixed an issue that would cause Bourbon to not be found within Rails apps.
|
29
|
+
|
30
|
+
[5.0.0-beta.8]: https://github.com/thoughtbot/bourbon/compare/v5.0.0.beta.7...v5.0.0.beta.8
|
11
31
|
|
12
32
|
## [5.0.0-beta.7] - 2016-11-03
|
13
33
|
|
14
34
|
### Added
|
15
35
|
|
16
36
|
- Added `white-space: nowrap;` to the `hide-visually` mixin so that content
|
17
|
-
renders on one line and is correctly pronounced by screen readers.
|
37
|
+
renders on one line and is correctly pronounced by screen readers. You can
|
38
|
+
read more about this in Jesse Beach’s article “[Beware smushed off-screen
|
39
|
+
accessible text][smushed-text-article].”
|
18
40
|
|
19
41
|
### Changed
|
20
42
|
|
@@ -33,6 +55,7 @@ Nothing at the moment.
|
|
33
55
|
- Renamed the `word-wrap` mixin to `overflow-wrap` to align with the
|
34
56
|
name change in the [CSS spec].
|
35
57
|
|
58
|
+
[smushed-text-article]: https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe#.l4hkljiza
|
36
59
|
[system-fonts]: https://github.com/mrmrs/css-system-fonts
|
37
60
|
[CSS spec]: https://drafts.csswg.org/css-text-3/#propdef-overflow-wrap
|
38
61
|
|
@@ -222,7 +245,8 @@ Nothing at the moment.
|
|
222
245
|
- The `$monospace` variable has been removed.
|
223
246
|
- The `box-sizing` mixin has been removed.
|
224
247
|
- The `button` mixin has been removed.
|
225
|
-
- The `em` and `rem`
|
248
|
+
- The `em` and `rem` functions have been removed.
|
249
|
+
- [See the discussion on why these were removed][em-rem-issue].
|
226
250
|
- The `flex-grid` function has been removed.
|
227
251
|
- The `flex-gutter` function has been removed.
|
228
252
|
- The `golden-ratio` function has been removed.
|
@@ -231,6 +255,122 @@ Nothing at the moment.
|
|
231
255
|
- The `retina-image` mixin has been removed.
|
232
256
|
- The `triangle` mixin has been removed.
|
233
257
|
|
234
|
-
[5.0.0.alpha.0]: https://github.com/thoughtbot/bourbon/compare/v4.
|
258
|
+
[5.0.0.alpha.0]: https://github.com/thoughtbot/bourbon/compare/v4.3.4...v5.0.0.alpha.0
|
235
259
|
[3cf106a]: https://github.com/thoughtbot/bourbon/commit/3cf106a210c1bae7765e6193f62310f95fdee0b7
|
236
260
|
[Autoprefixer]: https://github.com/postcss/autoprefixer
|
261
|
+
[em-rem-issue]: https://github.com/thoughtbot/bourbon/issues/691
|
262
|
+
|
263
|
+
## [4.3.4] - 2017-04-01
|
264
|
+
|
265
|
+
### Changed
|
266
|
+
|
267
|
+
- Updated deprecation warning message for `strip-units`. ([#1016])
|
268
|
+
|
269
|
+
[4.3.4]: https://github.com/thoughtbot/bourbon/compare/v4.3.3...v4.3.4
|
270
|
+
[#1016]: https://github.com/thoughtbot/bourbon/pull/1016
|
271
|
+
|
272
|
+
## [4.3.3] - 2017-02-23
|
273
|
+
|
274
|
+
### Fixed
|
275
|
+
|
276
|
+
- Internal Bourbon deprecation warnings for `is-size` and `is-length` will no
|
277
|
+
longer be thrown when using the `size` mixin.
|
278
|
+
|
279
|
+
[4.3.3]: https://github.com/thoughtbot/bourbon/compare/v4.3.2...v4.3.3
|
280
|
+
|
281
|
+
## [4.3.2] - 2017-02-10
|
282
|
+
|
283
|
+
### Fixed
|
284
|
+
|
285
|
+
- Internal Bourbon deprecation warnings for `unpack` and `is-length` will no
|
286
|
+
longer be thrown when using the `position` mixin. ([#1004])
|
287
|
+
|
288
|
+
[4.3.2]: https://github.com/thoughtbot/bourbon/compare/v4.3.1...v4.3.2
|
289
|
+
[#1004]: https://github.com/thoughtbot/bourbon/pull/1004
|
290
|
+
|
291
|
+
## [4.3.1] - 2017-02-07
|
292
|
+
|
293
|
+
### Fixed
|
294
|
+
|
295
|
+
- Internal Bourbon deprecation warnings will no longer be thrown. ([#1002])
|
296
|
+
|
297
|
+
[4.3.1]: https://github.com/thoughtbot/bourbon/compare/v4.3.0...v4.3.1
|
298
|
+
[#1002]: https://github.com/thoughtbot/bourbon/pull/1002
|
299
|
+
|
300
|
+
## [4.3.0] - 2017-02-03
|
301
|
+
|
302
|
+
### Added
|
303
|
+
|
304
|
+
- Added deprecation warnings for features that will be removed in 5.0.0. Please
|
305
|
+
reference our [change log], which includes a list of these changes and
|
306
|
+
removals. ([#891])
|
307
|
+
|
308
|
+
[4.3.0]: https://github.com/thoughtbot/bourbon/compare/v4.2.7...v4.3.0
|
309
|
+
[change log]: https://github.com/thoughtbot/bourbon/blob/master/CHANGELOG.md
|
310
|
+
[#891]: https://github.com/thoughtbot/bourbon/pull/891
|
311
|
+
|
312
|
+
## [4.2.7] - 2016-04-15
|
313
|
+
|
314
|
+
### Fixed
|
315
|
+
|
316
|
+
- Fixed a Sass deprecation warning when using the `background` and
|
317
|
+
`background-image` mixins.
|
318
|
+
|
319
|
+
[4.2.7]: https://github.com/thoughtbot/bourbon/compare/v4.2.6...v4.2.7
|
320
|
+
|
321
|
+
## [4.2.6] - 2015-10-17
|
322
|
+
|
323
|
+
### Fixed
|
324
|
+
|
325
|
+
- Fixed a bug with eyeglass support.
|
326
|
+
|
327
|
+
[4.2.6]: https://github.com/thoughtbot/bourbon/compare/v4.2.5...v4.2.6
|
328
|
+
|
329
|
+
## [4.2.5] - 2015-09-17
|
330
|
+
|
331
|
+
## Added
|
332
|
+
|
333
|
+
- Support for [eyeglass].
|
334
|
+
|
335
|
+
[4.2.5]: https://github.com/thoughtbot/bourbon/compare/v4.2.4...v4.2.5
|
336
|
+
[eyeglass]: http://eyeglass.rocks/
|
337
|
+
|
338
|
+
## [4.2.4] - 2015-08-21
|
339
|
+
|
340
|
+
## Changed
|
341
|
+
|
342
|
+
- [`$all-text-inputs`] now accounts for `input`’s that don’t have a `type`
|
343
|
+
attribute specified, as they default to `type="text"`.
|
344
|
+
(https://github.com/thoughtbot/bourbon/commit/8e7e36e01c47194d83951fb6315c5b26a008f2b7)
|
345
|
+
- The [`bourbon` npm package] now has a proper load path.
|
346
|
+
(https://github.com/thoughtbot/bourbon/commit/36c2d5576f1fe9dbdfd9543e15064c5a4a16343e)
|
347
|
+
|
348
|
+
[4.2.4]: https://github.com/thoughtbot/bourbon/compare/v4.2.3...v4.2.4
|
349
|
+
[`$all-text-inputs`]: http://bourbon.io/docs/#text-inputs
|
350
|
+
[`bourbon` npm package]: https://npmjs.com/package/bourbon
|
351
|
+
|
352
|
+
## [4.2.3] - 2015-05-18
|
353
|
+
|
354
|
+
## Fixed
|
355
|
+
|
356
|
+
- Fixed an issue with the `font-face` mixin outputting an extraneous commas when
|
357
|
+
using LibSass set to compressed output.
|
358
|
+
|
359
|
+
[4.2.3]: https://github.com/thoughtbot/bourbon/compare/v4.2.2...v4.2.3
|
360
|
+
|
361
|
+
## [4.2.2] - 2015-04-01
|
362
|
+
|
363
|
+
## Fixed
|
364
|
+
|
365
|
+
- The `flex-direction` mixin now properly outputs box-direction (old syntax) if
|
366
|
+
set to normal.
|
367
|
+
|
368
|
+
[4.2.2]: https://github.com/thoughtbot/bourbon/compare/v4.2.1...v4.2.2
|
369
|
+
|
370
|
+
## [4.2.1] - 2015-02-23
|
371
|
+
|
372
|
+
## Fixed
|
373
|
+
|
374
|
+
- Restored the `app/` directory for npm.
|
375
|
+
|
376
|
+
[4.2.1]: https://github.com/thoughtbot/bourbon/compare/v4.2.0...v4.2.1
|
data/CONTRIBUTING.md
CHANGED
@@ -1,7 +1,28 @@
|
|
1
1
|
# Contributing
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
## Governance
|
4
|
+
|
5
|
+
We, the maintainers of Bourbon, would like you to know what to expect when
|
6
|
+
interacting with this project's repo.
|
7
|
+
|
8
|
+
As a *user* of Bourbon, you can expect care to be put into official releases.
|
9
|
+
The maintainers cannot guarantee that the `master` branch will have the same
|
10
|
+
API forever.
|
11
|
+
|
12
|
+
If you *review pull requests* or *comment on issues*, you are expected to abide
|
13
|
+
by our [code of conduct].
|
14
|
+
|
15
|
+
As a *contributor*, submitting a pull request or opening an issue, you can
|
16
|
+
expect an initial response from a maintainer within two weeks. The maintainers
|
17
|
+
cannot guarantee that we will accept all feature requests, and may fix bugs in
|
18
|
+
ways other than how the contributor suggests. You are expected to abide by our
|
19
|
+
[code of conduct].
|
20
|
+
|
21
|
+
As a *maintainer*, you can merge pull requests (even your own) at any time.
|
22
|
+
Maintainers are encouraged to request code review from others at thoughtbot or
|
23
|
+
any relevant peers. You are expected to abide by our [code of conduct].
|
24
|
+
|
25
|
+
Only members of thoughtbot may be maintainers.
|
5
26
|
|
6
27
|
## Pull Requests
|
7
28
|
|
@@ -62,3 +83,4 @@ We use [SassDoc] to document Bourbon. [Annotations] should be ordered:
|
|
62
83
|
|
63
84
|
[SassDoc]: http://sassdoc.com
|
64
85
|
[Annotations]: http://sassdoc.com/annotations
|
86
|
+
[code of conduct]: https://thoughtbot.com/open-source-code-of-conduct
|
data/LICENSE.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright © 2011 [thoughtbot, inc.](http://thoughtbot.com)
|
3
|
+
Copyright © 2011-2017 [thoughtbot, inc.](http://thoughtbot.com)
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the “Software”), to deal
|
data/README.md
CHANGED
@@ -11,17 +11,18 @@ It is…
|
|
11
11
|
- Human-readable: We aim for clarity over brevity.
|
12
12
|
- Lightweight: Zero output post-install and has no visual opinion.
|
13
13
|
|
14
|
-
The current version is **4.
|
15
|
-
5.0.0
|
14
|
+
The current stable version is **4.3.4**. The `master` branch on GitHub is
|
15
|
+
version 5.0.0.beta.8.
|
16
16
|
|
17
17
|
[Bourbon]: http://bourbon.io
|
18
18
|
[Sass]: http://sass-lang.com
|
19
19
|
|
20
20
|
### Helpful Links
|
21
21
|
|
22
|
-
- [Documentation](http://bourbon.io/docs
|
22
|
+
- [Documentation](http://bourbon.io/docs)
|
23
23
|
- [Change log](CHANGELOG.md)
|
24
24
|
- [Twitter](https://twitter.com/bourbonsass)
|
25
|
+
- [Stack Overflow](https://stackoverflow.com/questions/tagged/bourbon)
|
25
26
|
|
26
27
|
## Table of Contents
|
27
28
|
|
@@ -45,34 +46,34 @@ The current version is **4.2.7**. The `master` branch on GitHub is version
|
|
45
46
|
|
46
47
|
1. Install the Bourbon gem using the [RubyGems] package manager:
|
47
48
|
|
48
|
-
|
49
|
-
|
50
|
-
|
49
|
+
```bash
|
50
|
+
gem install bourbon
|
51
|
+
```
|
51
52
|
|
52
|
-
|
53
|
+
Alternatively, you can install Bourbon with [Bower].
|
53
54
|
|
54
55
|
1. Install the Bourbon library into the current directory:
|
55
56
|
|
56
|
-
|
57
|
-
|
58
|
-
|
57
|
+
```bash
|
58
|
+
bourbon install
|
59
|
+
```
|
59
60
|
|
60
|
-
|
61
|
-
|
61
|
+
**Pro Tip:** You can target installation into a specific directory using the
|
62
|
+
`path` flag:
|
62
63
|
|
63
|
-
|
64
|
-
|
65
|
-
|
64
|
+
```bash
|
65
|
+
bourbon install --path my/custom/path/
|
66
|
+
```
|
66
67
|
|
67
68
|
1. Import Bourbon at the beginning of your stylesheet:
|
68
69
|
|
69
|
-
|
70
|
-
|
71
|
-
|
70
|
+
```scss
|
71
|
+
@import "bourbon/bourbon";
|
72
|
+
```
|
72
73
|
|
73
|
-
|
74
|
-
|
75
|
-
|
74
|
+
It’s not recommended that you modify Bourbon’s files directly as it will
|
75
|
+
make updating to future versions difficult, by overwriting your custom
|
76
|
+
changes or causing merge conflicts.
|
76
77
|
|
77
78
|
[RubyGems]: https://rubygems.org
|
78
79
|
[Bower]: http://bower.io
|
@@ -81,21 +82,21 @@ The current version is **4.2.7**. The `master` branch on GitHub is version
|
|
81
82
|
|
82
83
|
1. Add Bourbon to your Gemfile:
|
83
84
|
|
84
|
-
|
85
|
-
|
86
|
-
|
85
|
+
```ruby
|
86
|
+
gem "bourbon"
|
87
|
+
```
|
87
88
|
|
88
89
|
1. Then run:
|
89
90
|
|
90
|
-
|
91
|
-
|
92
|
-
|
91
|
+
```bash
|
92
|
+
bundle install
|
93
|
+
```
|
93
94
|
|
94
95
|
1. Restart your server and rename `application.css` to `application.scss`:
|
95
96
|
|
96
|
-
|
97
|
-
|
98
|
-
|
97
|
+
```bash
|
98
|
+
mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss
|
99
|
+
```
|
99
100
|
|
100
101
|
1. Delete _all_ Sprockets directives in `application.scss` (`require`,
|
101
102
|
`require_tree` and `require_self`) and use Sass’s native `@import` instead
|
@@ -104,33 +105,33 @@ The current version is **4.2.7**. The `master` branch on GitHub is version
|
|
104
105
|
1. Import Bourbon at the beginning of `application.scss`. Any project styles
|
105
106
|
that utilize Bourbon’s features must be imported after Bourbon.
|
106
107
|
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
108
|
+
```scss
|
109
|
+
@import "bourbon";
|
110
|
+
@import "home";
|
111
|
+
@import "users";
|
112
|
+
```
|
112
113
|
|
113
|
-
[sass-import]:
|
114
|
+
[sass-import]: https://content.pivotal.io/blog/structure-your-sass-files-with-import
|
114
115
|
|
115
116
|
### Installing with npm and using a Node-based asset pipeline
|
116
117
|
|
117
118
|
1. Add Bourbon as a dependency:
|
118
119
|
|
119
|
-
|
120
|
-
|
121
|
-
|
120
|
+
```bash
|
121
|
+
npm install --save bourbon
|
122
|
+
```
|
122
123
|
|
123
|
-
1. If you’re using [eyeglass], skip to Step 3. Otherwise,
|
124
|
-
|
125
|
-
`require("bourbon").includePaths` is an array of directories that you should
|
126
|
-
pass to node-sass. How you do this depends on how node-sass is integrated
|
127
|
-
your project.
|
124
|
+
1. If you’re using [eyeglass], skip to Step 3. Otherwise, you’ll need to add
|
125
|
+
Bourbon to your node-sass `includePaths` option.
|
126
|
+
`require("bourbon").includePaths` is an array of directories that you should
|
127
|
+
pass to node-sass. How you do this depends on how node-sass is integrated
|
128
|
+
into your project.
|
128
129
|
|
129
130
|
1. Import Bourbon into your Sass files:
|
130
131
|
|
131
|
-
|
132
|
-
|
133
|
-
|
132
|
+
```scss
|
133
|
+
@import "bourbon";
|
134
|
+
```
|
134
135
|
|
135
136
|
[eyeglass]: http://eyeglass.rocks
|
136
137
|
|
@@ -138,16 +139,16 @@ your project.
|
|
138
139
|
|
139
140
|
1. Uninstall any Bourbon gem versions you already have:
|
140
141
|
|
141
|
-
|
142
|
-
|
143
|
-
|
142
|
+
```bash
|
143
|
+
gem uninstall bourbon
|
144
|
+
```
|
144
145
|
|
145
146
|
1. Reinstall the Bourbon gem, using the `-v` flag to specify the version
|
146
147
|
you need:
|
147
148
|
|
148
|
-
|
149
|
-
|
150
|
-
|
149
|
+
```bash
|
150
|
+
gem install bourbon -v 4.2.7
|
151
|
+
```
|
151
152
|
|
152
153
|
1. Follow the [instructions above](#installation) to install Bourbon into
|
153
154
|
your project.
|
@@ -184,17 +185,13 @@ Firefox, Safari, and Edge.
|
|
184
185
|
|
185
186
|
Bourbon is part of a larger, modular family of Sass utilities:
|
186
187
|
|
187
|
-
- [
|
188
|
-
- [
|
189
|
-
|
190
|
-
- [Bitters](https://github.com/thoughtbot/bitters): Scaffold styles, variables
|
191
|
-
and structure for Bourbon projects
|
192
|
-
- [Refills](https://github.com/thoughtbot/refills): Prepackaged patterns and
|
193
|
-
components built with Bourbon, Neat and Bitters
|
188
|
+
- [Neat]: A lightweight and flexible Sass grid
|
189
|
+
- [Bitters]: Scaffold styles, variables and structure for Bourbon projects
|
190
|
+
- [Refills]: Components and patterns built with Bourbon and Neat
|
194
191
|
|
195
|
-
|
196
|
-
|
197
|
-
|
192
|
+
[Neat]: https://github.com/thoughtbot/neat
|
193
|
+
[Bitters]: https://github.com/thoughtbot/bitters
|
194
|
+
[Refills]: https://github.com/thoughtbot/refills
|
198
195
|
|
199
196
|
## Contributing
|
200
197
|
|
@@ -205,8 +202,8 @@ See the [contributing] document. Thank you, [contributors]!
|
|
205
202
|
|
206
203
|
## License
|
207
204
|
|
208
|
-
Bourbon is copyright © 2011 [thoughtbot, inc.][thoughtbot] It is free
|
209
|
-
and may be redistributed under the terms specified in the [license].
|
205
|
+
Bourbon is copyright © 2011-2017 [thoughtbot, inc.][thoughtbot] It is free
|
206
|
+
software, and may be redistributed under the terms specified in the [license].
|
210
207
|
|
211
208
|
[license]: LICENSE.md
|
212
209
|
|
@@ -216,11 +213,12 @@ Bourbon is maintained by Tyson Gach and the thoughtbot design team. It is funded
|
|
216
213
|
by [thoughtbot, inc.][thoughtbot] and the names and logos for thoughtbot are
|
217
214
|
trademarks of thoughtbot, inc.
|
218
215
|
|
219
|
-
[
|
216
|
+
[![thoughtbot][thoughtbot-logo]][thoughtbot]
|
220
217
|
|
221
218
|
We love open-source software! See [our other projects][community] or
|
222
219
|
[hire us][hire] to design, develop, and grow your product.
|
223
220
|
|
224
221
|
[thoughtbot]: https://thoughtbot.com?utm_source=github
|
222
|
+
[thoughtbot-logo]: http://presskit.thoughtbot.com/images/thoughtbot-logo-for-readmes.svg
|
225
223
|
[community]: https://thoughtbot.com/community?utm_source=github
|
226
224
|
[hire]: https://thoughtbot.com/hire-us?utm_source=github
|