README.md in bitters-0.9.3 vs README.md in bitters-0.9.4
- old
+ new
@@ -22,24 +22,31 @@
bitters install
```
The generated folder will contain all Bitters files.
-Import Bitters after Bourbon in your `application.css.scss`. If you are using the Neat overrides found in `_grid-settings.scss`, be sure to `@import "bitters/bitters"` between Bourbon and Neat. Be sure to not include any of Neat's mixins or functions in the Bitters files when modifying Bitters. All additional stylesheets should be imported below Bitters:
+Import Bitters after Bourbon in your `application.css.scss`. All additional stylesheets should be imported below Bitters.
+If you are using Neat, import it after Bitters. Be sure to not include any of Neat's mixins or functions in the Bitters files when modifying Bitters.
+
```scss
@import "bourbon";
@import "bitters/bitters";
@import "neat";
// All other imports
```
+Also, when using Neat, have the following lines in "_bitters.scss" uncommented:
+```scss
+@import "neat-helpers"; // or "../neat/neat-helpers" when not in Rails
+@import "grid-settings";
+```
+
We suggest using [Normalize](http://necolas.github.io/normalize.css/) for a CSS reset with Bitters.
-
Getting Started
===
### Sass structure & default style
The Bitters folder should contain styles for all the basic elements used throughout the project. It also contains folders for custom mixins and extends for your site as well. Add code to the existing files or add new files to the folders. Customize Bitters for your site as you see fit.
@@ -56,9 +63,12 @@
### Lists
All lists have stripped out styles. No bullets, no left padding. To add back the expected browser default styles add `@extend %default-ul;` or `@extend %default-ol;` to the `<ul>` or `<ol>` respectively..
### Forms
Adds basic styles all form elements. The variables at the top of the file all inherit from the variables file but make it really easy to be overridden.
+
+### Buttons
+Basic style for `button` and `input[type="submit"]`. Button style can be changed by setting the `$button-style` variable to one of the [Bourbon](http://bourbon.io) button style [options](http://bourbon.io/docs/#buttons).
### Flashes
Used for any error, warning or success messages in applications or forms. Specifically made for rails application notices.
Requirements