https://github.com/mjonuschat/bootstrap-sass-rails
HTML, CSS, and JS toolkit from Twitter – Official Sass port:
https://github.com/mjonuschat/bootstrap-sass-rails
Last synced: about 1 year ago
JSON representation
HTML, CSS, and JS toolkit from Twitter – Official Sass port:
- Host: GitHub
- URL: https://github.com/mjonuschat/bootstrap-sass-rails
- Owner: mjonuschat
- License: other
- Created: 2011-11-26T17:52:05.000Z (over 14 years ago)
- Default Branch: develop
- Last Pushed: 2014-01-31T11:58:37.000Z (over 12 years ago)
- Last Synced: 2025-04-09T18:18:10.109Z (about 1 year ago)
- Language: CSS
- Homepage: https://github.com/twbs/bootstrap-sass
- Size: 1.82 MB
- Stars: 280
- Watchers: 3
- Forks: 55
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DEPRECATION NOTICE
The bootstrap-sass-rails gem is deprecated starting with version 3.1.0.0.
There is an official Sass port of Bootstrap now which can be found
within the twbs organization on GitHub:
https://github.com/twbs/bootstrap-sass
You are recommended to upgrade your Gemfile to directly use bootstrap-sass
from now on. Upgrading should be really simple, the differences between the
gems are mostly in the namespacing.
# UPGRADING
Remove the twitter/ prefix from all your `@import` and `= require` statements:
**Before:**
```css
@import "twitter/bootstrap";
@import "twitter/bootstrap/modal";
```
**After:**
```css
@import "bootstrap";
@import "bootstrap/modal";
```
**Before:**
```css
//= require "twitter/bootstrap";
//= require "twitter/bootstrap/modal";
```
**After:**
```css
//= require "bootstrap";
//= require "bootstrap/modal";
```
Thank you for using bootstrap-sass-rails!