bootstrap-sass/README.md

357 строки
12 KiB
Markdown
Исходник Обычный вид История

2015-02-27 13:30:52 +03:00
# Bootstrap for Sass
[![Gem Version](https://badge.fury.io/rb/bootstrap-sass.svg)](http://badge.fury.io/rb/bootstrap-sass)
[![npm version](https://img.shields.io/npm/v/bootstrap-sass.svg?style=flat)](https://www.npmjs.com/package/bootstrap-sass)
[![Bower Version](https://badge.fury.io/bo/bootstrap-sass.svg)](http://badge.fury.io/bo/bootstrap-sass)
[![Build Status](https://img.shields.io/travis/twbs/bootstrap-sass.svg)](https://travis-ci.org/twbs/bootstrap-sass)
2012-05-11 17:38:25 +04:00
2015-09-27 16:28:00 +03:00
`bootstrap-sass` is a Sass-powered version of [Bootstrap](https://github.com/twbs/bootstrap) 3, ready to drop right into your Sass powered applications.
This is Bootstrap 3. For Bootstrap 4 use the [Bootstrap Ruby gem](http://github.com/twbs/bootstrap-rubygem) if you use Ruby, and the [main repo](http://github.com/twbs/bootstrap) otherwise.
2013-10-16 23:24:42 +04:00
## Installation
2013-10-16 23:24:42 +04:00
Please see the appropriate guide for your environment of choice:
2014-08-04 10:23:12 +04:00
* [Ruby on Rails](#a-ruby-on-rails).
* [Compass](#b-compass-without-rails) not on Rails.
2014-08-04 10:24:58 +04:00
* [Bower](#c-bower).
2014-08-04 10:23:12 +04:00
2014-02-04 06:39:51 +04:00
### a. Ruby on Rails
`bootstrap-sass` is easy to drop into Rails with the asset pipeline.
In your Gemfile you need to add the `bootstrap-sass` gem, and ensure that the `sass-rails` gem is present - it is added to new Rails applications by default.
```ruby
2015-11-25 02:06:35 +03:00
gem 'bootstrap-sass', '~> 3.3.6'
2014-06-24 06:29:14 +04:00
gem 'sass-rails', '>= 3.2'
```
`bundle install` and restart your server to make the files available through the pipeline.
2015-01-21 23:36:08 +03:00
Import Bootstrap styles in `app/assets/stylesheets/application.scss`:
2014-06-24 05:14:26 +04:00
```scss
// "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
@import "bootstrap-sprockets";
@import "bootstrap";
2014-06-24 05:14:26 +04:00
```
`bootstrap-sprockets` must be imported before `bootstrap` for the icon fonts to work.
2015-01-21 23:36:08 +03:00
Make sure the file has `.scss` extension (or `.sass` for Sass syntax). If you have just generated a new Rails app,
2015-01-17 19:48:11 +03:00
it may come with a `.css` file instead. If this file exists, it will be served instead of Sass, so rename it:
```console
2015-01-21 23:36:08 +03:00
$ mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss
```
2015-07-27 19:22:42 +03:00
Then, remove all the `*= require_self` and `*= require_tree .` statements from the sass file. Instead, use `@import` to import Sass files.
2015-01-17 19:48:11 +03:00
2015-07-27 19:22:42 +03:00
Do not use `*= require` in Sass or your other stylesheets will not be [able to access][antirequire] the Bootstrap mixins or variables.
2014-06-24 05:14:26 +04:00
Require Bootstrap Javascripts in `app/assets/javascripts/application.js`:
2014-06-24 05:14:26 +04:00
```js
//= require jquery
//= require bootstrap-sprockets
```
`bootstrap-sprockets` and `bootstrap` [should not both be included](https://github.com/twbs/bootstrap-sass/issues/829#issuecomment-75153827) in `application.js`.
`bootstrap-sprockets` provides individual Bootstrap Javascript files (`alert.js` or `dropdown.js`, for example), while
`bootstrap` provides a concatenated file containing all Bootstrap Javascripts.
#### Bower with Rails
2014-10-31 21:43:42 +03:00
When using [bootstrap-sass Bower package](#c-bower) instead of the gem in Rails, configure assets in `config/application.rb`:
```ruby
# Bower asset paths
root.join('vendor', 'assets', 'bower_components').to_s.tap do |bower_path|
config.sass.load_paths << bower_path
config.assets.paths << bower_path
end
# Precompile Bootstrap fonts
config.assets.precompile << %r(bootstrap-sass/assets/fonts/bootstrap/[\w-]+\.(?:eot|svg|ttf|woff2?)$)
# Minimum Sass number precision required by bootstrap-sass
::Sass::Script::Value::Number.precision = [8, ::Sass::Script::Value::Number.precision].max
```
2015-01-21 23:36:08 +03:00
Replace Bootstrap `@import` statements in `application.scss` with:
2014-09-19 14:03:45 +04:00
2014-10-31 21:35:40 +03:00
```scss
$icon-font-path: "bootstrap-sass/assets/fonts/bootstrap/";
@import "bootstrap-sass/assets/stylesheets/bootstrap-sprockets";
@import "bootstrap-sass/assets/stylesheets/bootstrap";
```
Replace Bootstrap `require` directive in `application.js` with:
```js
//= require bootstrap-sass/assets/javascripts/bootstrap-sprockets
```
#### Rails 4.x
Please make sure `sprockets-rails` is at least v2.1.4.
#### Rails 3.2.x
2014-11-12 20:21:47 +03:00
bootstrap-sass is no longer compatible with Rails 3. The latest version of bootstrap-sass compatible with Rails 3.2 is v3.1.1.0.
2014-02-04 06:39:51 +04:00
### b. Compass without Rails
2013-10-16 23:24:42 +04:00
2014-12-17 17:41:34 +03:00
Install the gem:
```console
$ gem install bootstrap-sass
2013-10-16 23:24:42 +04:00
```
If you have an existing Compass project:
2014-12-17 17:41:34 +03:00
1. Require `bootstrap-sass` in `config.rb`:
2013-10-16 23:24:42 +04:00
2014-12-17 17:41:34 +03:00
```ruby
require 'bootstrap-sass'
```
2. Install Bootstrap with:
```console
$ bundle exec compass install bootstrap -r bootstrap-sass
```
2013-10-16 23:24:42 +04:00
If you are creating a new Compass project, you can generate it with bootstrap-sass support:
```console
2014-06-24 06:29:14 +04:00
$ bundle exec compass create my-new-project -r bootstrap-sass --using bootstrap
2013-10-16 23:24:42 +04:00
```
or, alternatively, if you're not using a Gemfile for your dependencies:
```console
2014-06-24 06:29:14 +04:00
$ compass create my-new-project -r bootstrap-sass --using bootstrap
```
2013-10-16 23:24:42 +04:00
This will create a new Compass project with the following files in it:
2014-06-24 06:29:14 +04:00
* [styles.sass](/templates/project/styles.sass) - main project Sass file, imports Bootstrap and variables.
2014-11-01 00:53:13 +03:00
* [_bootstrap-variables.sass](/templates/project/_bootstrap-variables.sass) - all of Bootstrap variables, override them here.
2013-10-16 23:24:42 +04:00
Some bootstrap-sass mixins may conflict with the Compass ones.
If this happens, change the import order so that Compass mixins are loaded later.
2013-10-16 23:24:42 +04:00
2014-06-24 06:29:14 +04:00
### c. Bower
2014-02-04 06:39:51 +04:00
bootstrap-sass Bower package is compatible with node-sass 3.2.0+. You can install it with:
2013-12-21 00:04:23 +04:00
2014-06-24 06:29:14 +04:00
```console
$ bower install bootstrap-sass
2013-12-21 00:04:23 +04:00
```
2014-06-24 04:57:06 +04:00
Sass, JS, and all other assets are located at [assets](/assets).
By default, `bower.json` main field list only the main `_bootstrap.scss` and all the static assets (fonts and JS).
This is compatible by default with asset managers such as [wiredep](https://github.com/taptapship/wiredep).
2014-06-24 06:29:14 +04:00
#### Node.js Mincer
2014-03-15 00:36:29 +04:00
2014-11-12 20:31:36 +03:00
If you use [mincer][mincer] with node-sass, import bootstrap like so:
2014-06-24 05:14:26 +04:00
2014-11-12 20:31:36 +03:00
In `application.css.ejs.scss` (NB **.css.ejs.scss**):
2014-03-15 00:36:29 +04:00
```scss
// Import mincer asset paths helper integration
@import "bootstrap-mincer";
@import "bootstrap";
```
2014-06-24 06:29:14 +04:00
In `application.js`:
2014-06-24 05:14:26 +04:00
```js
//= require bootstrap-sprockets
```
2014-03-15 00:36:29 +04:00
See also this [example manifest.js](/test/dummy_node_mincer/manifest.js) for mincer.
2014-02-13 02:57:20 +04:00
2014-06-24 06:29:14 +04:00
### Configuration
#### Sass
By default all of Bootstrap is imported.
You can also import components explicitly. To start with a full list of modules copy
2014-08-19 20:28:21 +04:00
[`_bootstrap.scss`](assets/stylesheets/_bootstrap.scss) file into your assets as `_bootstrap-custom.scss`.
Then comment out components you do not want from `_bootstrap-custom`.
2014-06-24 06:29:14 +04:00
In the application Sass file, replace `@import 'bootstrap'` with:
```scss
@import 'bootstrap-custom';
2014-06-24 06:29:14 +04:00
```
#### Sass: Number Precision
2014-03-15 00:36:29 +04:00
2015-01-17 19:42:11 +03:00
bootstrap-sass [requires](https://github.com/twbs/bootstrap-sass/issues/409) minimum [Sass number precision][sass-precision] of 8 (default is 5).
2014-02-13 02:57:20 +04:00
2014-06-24 06:29:14 +04:00
Precision is set for Rails and Compass automatically.
When using ruby Sass compiler standalone or with the Bower version you can set it with:
```ruby
::Sass::Script::Value::Number.precision = [8, ::Sass::Script::Value::Number.precision].max
```
2014-06-24 06:29:14 +04:00
#### Sass: Autoprefixer
Bootstrap requires the use of [Autoprefixer][autoprefixer].
2014-06-24 06:29:14 +04:00
[Autoprefixer][autoprefixer] adds vendor prefixes to CSS rules using values from [Can I Use](http://caniuse.com/).
2014-06-24 18:12:17 +04:00
#### JavaScript
2014-06-24 06:29:14 +04:00
[`assets/javascripts/bootstrap.js`](/assets/javascripts/bootstrap.js) contains all of Bootstrap JavaScript,
concatenated in the [correct order](/assets/javascripts/bootstrap-sprockets.js).
2014-06-24 18:12:17 +04:00
#### JavaScript with Sprockets or Mincer
2014-06-24 06:29:14 +04:00
If you use Sprockets or Mincer, you can require `bootstrap-sprockets` instead to load the individual modules:
```js
// Load all Bootstrap JavaScript
//= require bootstrap-sprockets
```
2013-11-14 21:26:08 +04:00
2014-06-24 06:29:14 +04:00
You can also load individual modules, provided you also require any dependencies.
You can check dependencies in the [Bootstrap JS documentation][jsdocs].
```js
//= require bootstrap/scrollspy
//= require bootstrap/modal
//= require bootstrap/dropdown
```
#### Fonts
The fonts are referenced as:
2013-11-14 21:26:08 +04:00
```scss
"#{$icon-font-path}#{$icon-font-name}.eot"
2013-11-14 21:26:08 +04:00
```
`$icon-font-path` defaults to `bootstrap/` if asset path helpers are used, and `../fonts/bootstrap/` otherwise.
2013-11-14 21:26:08 +04:00
When using bootstrap-sass with Compass, Sprockets, or Mincer, you **must** import the relevant path helpers before Bootstrap itself, for example:
2013-11-14 21:26:08 +04:00
```scss
@import "bootstrap-compass";
@import "bootstrap";
2013-11-14 21:26:08 +04:00
```
2013-10-16 23:29:06 +04:00
## Usage
2013-11-08 10:05:13 +04:00
### Sass
2013-11-08 09:27:51 +04:00
2015-01-21 23:36:08 +03:00
Import Bootstrap into a Sass file (for example, application.scss) to get all of Bootstrap's styles, mixins and variables!
2013-11-04 23:00:12 +04:00
```scss
@import "bootstrap";
```
You can also include optional bootstrap theme:
2013-11-04 23:00:12 +04:00
```scss
@import "bootstrap/theme";
```
2013-12-11 14:49:28 +04:00
The full list of bootstrap variables can be found [here](http://getbootstrap.com/customize/#less-variables). You can override these by simply redefining the variable before the `@import` directive, e.g.:
2013-11-04 23:00:12 +04:00
```scss
$navbar-default-bg: #312312;
$light-orange: #ff8c00;
$navbar-default-color: $light-orange;
@import "bootstrap";
```
2014-09-04 02:08:14 +04:00
## Version
2015-02-13 01:34:49 +03:00
Bootstrap for Sass version may differ from the upstream version in the last number, known as
[PATCH](http://semver.org/spec/v2.0.0.html). The patch version may be ahead of the corresponding upstream minor.
2015-02-13 01:34:49 +03:00
This happens when we need to release Sass-specific changes.
Before v3.3.2, Bootstrap for Sass version used to reflect the upstream version, with an additional number for
Sass-specific changes. This was changed due to Bower and npm compatibility issues.
The upstream versions vs the Bootstrap for Sass versions are:
| Upstream | Sass |
|---------:|--------:|
2015-11-25 02:06:35 +03:00
| 3.3.6 | 3.3.6 |
2015-06-16 19:25:34 +03:00
| 3.3.5 | 3.3.5 |
2015-03-16 19:23:24 +03:00
| 3.3.4 | 3.3.4 |
2015-02-13 01:34:49 +03:00
| 3.3.2 | 3.3.3 |
| <= 3.3.1 | 3.3.1.x |
2014-09-04 02:08:14 +04:00
Always refer to [CHANGELOG.md](/CHANGELOG.md) when upgrading.
2013-11-18 17:31:19 +04:00
---
## Development and Contributing
If you'd like to help with the development of bootstrap-sass itself, read this section.
### Upstream Converter
2011-09-20 02:02:29 +04:00
Keeping bootstrap-sass in sync with upstream changes from Bootstrap used to be an error prone and time consuming manual process. With Bootstrap 3 we have introduced a converter that automates this.
**Note: if you're just looking to *use* Bootstrap 3, see the [installation](#installation) section above.**
Upstream changes to the Bootstrap project can now be pulled in using the `convert` rake task.
2011-09-07 03:25:14 +04:00
2013-10-17 00:09:18 +04:00
Here's an example run that would pull down the master branch from the main [twbs/bootstrap](https://github.com/twbs/bootstrap) repo:
2013-10-17 00:09:18 +04:00
rake convert
2014-02-22 18:19:25 +04:00
This will convert the latest LESS to Sass and update to the latest JS.
2013-10-17 00:09:18 +04:00
To convert a specific branch or version, pass the branch name or the commit hash as the first task argument:
2013-10-17 00:09:18 +04:00
rake convert[e8a1df5f060bf7e6631554648e0abde150aedbe4]
The latest converter script is located [here][converter] and does the following:
* Converts upstream bootstrap LESS files to its matching SCSS file.
2015-01-26 06:09:59 +03:00
* Copies all upstream JavaScript into `assets/javascripts/bootstrap`, a Sprockets manifest at `assets/javascripts/bootstrap-sprockets.js`, and a concatenation at `assets/javascripts/bootstrap.js`.
2014-06-24 06:29:14 +04:00
* Copies all upstream font files into `assets/fonts/bootstrap`.
2013-08-21 20:30:32 +04:00
* Sets `Bootstrap::BOOTSTRAP_SHA` in [version.rb][version] to the branch sha.
2013-08-22 21:11:02 +04:00
This converter fully converts original LESS to SCSS. Conversion is automatic but requires instructions for certain transformations (see converter output).
2013-08-22 21:08:29 +04:00
Please submit GitHub issues tagged with `conversion`.
2011-09-20 02:02:29 +04:00
## Credits
bootstrap-sass has a number of major contributors:
<!-- feel free to make these link wherever you wish -->
* [Thomas McDonald](https://twitter.com/thomasmcdonald_)
* [Tristan Harward](http://www.trisweb.com)
* Peter Gumeson
* [Gleb Mazovetskiy](https://github.com/glebm)
2011-09-20 02:02:29 +04:00
and a [significant number of other contributors][contrib].
## You're in good company
bootstrap-sass is used to build some awesome projects all over the web, including
2015-02-21 14:23:21 +03:00
[Diaspora](https://diasporafoundation.org/), [rails_admin](https://github.com/sferik/rails_admin),
Michael Hartl's [Rails Tutorial](https://www.railstutorial.org/), [gitlabhq](http://gitlabhq.com/) and
[kandan](http://getkandan.com/).
2014-02-04 05:30:52 +04:00
[converter]: https://github.com/twbs/bootstrap-sass/blob/master/tasks/converter/less_conversion.rb
[version]: https://github.com/twbs/bootstrap-sass/blob/master/lib/bootstrap-sass/version.rb
2013-12-20 18:40:04 +04:00
[contrib]: https://github.com/twbs/bootstrap-sass/graphs/contributors
[antirequire]: https://github.com/twbs/bootstrap-sass/issues/79#issuecomment-4428595
2013-10-16 23:29:06 +04:00
[jsdocs]: http://getbootstrap.com/javascript/#transitions
[sass-precision]: http://sass-lang.com/documentation/Sass/Script/Value/Number.html#precision%3D-class_method
2014-03-14 01:54:18 +04:00
[mincer]: https://github.com/nodeca/mincer
[autoprefixer]: https://github.com/postcss/autoprefixer