https://github.com/twbs/bootstrap-sass
Official Sass port of Bootstrap 2 and 3.
https://github.com/twbs/bootstrap-sass
Keywords from Contributors
activerecord activejob mvc rubygems rspec feature-flag sinatra devise form-builder dsl
Last synced: about 5 hours ago
JSON representation
Repository metadata
Official Sass port of Bootstrap 2 and 3.
- Host: GitHub
- URL: https://github.com/twbs/bootstrap-sass
- Owner: twbs
- License: mit
- Created: 2011-09-06T18:58:49.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T13:14:28.000Z (over 1 year ago)
- Last Synced: 2025-12-08T22:03:45.606Z (8 days ago)
- Language: SCSS
- Homepage: http://getbootstrap.com/css/#sass
- Size: 3.05 MB
- Stars: 12,536
- Watchers: 535
- Forks: 3,502
- Open Issues: 30
- Releases: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
README.md
Bootstrap 3 for Sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
This is Bootstrap 3. For Bootstrap 4 use the Bootstrap rubygem if you use Ruby, and the main repo otherwise.
Installation
Please see the appropriate guide for your environment of choice:
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.
gem 'bootstrap-sass', '~> 3.4.1'
gem 'sassc-rails', '>= 2.1.0'
bundle install and restart your server to make the files available through the pipeline.
Import Bootstrap styles in app/assets/stylesheets/application.scss:
// "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
@import "bootstrap-sprockets";
@import "bootstrap";
bootstrap-sprockets must be imported before bootstrap for the icon fonts to work.
Make sure the file has .scss extension (or .sass for Sass syntax). If you have just generated a new Rails app,
it may come with a .css file instead. If this file exists, it will be served instead of Sass, so rename it:
$ mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss
Then, remove all the *= require_self and *= require_tree . statements from the sass file. Instead, use @import to import Sass files.
Do not use *= require in Sass or your other stylesheets will not be able to access the Bootstrap mixins or variables.
Bootstrap JavaScript depends on jQuery.
If you're using Rails 5.1+, add the jquery-rails gem to your Gemfile:
gem 'jquery-rails'
$ bundle install
Require Bootstrap Javascripts in app/assets/javascripts/application.js:
//= require jquery
//= require bootstrap-sprockets
bootstrap-sprockets and bootstrap should not both be included 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
When using bootstrap-sass Bower package instead of the gem in Rails, configure assets in config/application.rb:
# 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
Replace Bootstrap @import statements in application.scss with:
$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:
//= 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
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.
b. Bower
bootstrap-sass Bower package is compatible with node-sass 3.2.0+. You can install it with:
$ bower install bootstrap-sass
Sass, JS, and all other assets are located at 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.
Node.js Mincer
If you use mincer with node-sass, import Bootstrap like so:
In application.css.ejs.scss (NB .css.ejs.scss):
// Import mincer asset paths helper integration
@import "bootstrap-mincer";
@import "bootstrap";
In application.js:
//= require bootstrap-sprockets
See also this example manifest.js for mincer.
c. npm / Node.js
$ npm install bootstrap-sass
Configuration
Sass
By default all of Bootstrap is imported.
You can also import components explicitly. To start with a full list of modules copy
_bootstrap.scss file into your assets as _bootstrap-custom.scss.
Then comment out components you do not want from _bootstrap-custom.
In the application Sass file, replace @import 'bootstrap' with:
@import 'bootstrap-custom';
Sass: Number Precision
bootstrap-sass requires minimum Sass number precision of 8 (default is 5).
Precision is set for Ruby automatically when using the sassc-rails gem.
When using the npm or Bower version with Ruby, you can set it with:
::Sass::Script::Value::Number.precision = [8, ::Sass::Script::Value::Number.precision].max
Sass: Autoprefixer
Bootstrap requires the use of Autoprefixer.
Autoprefixer adds vendor prefixes to CSS rules using values from Can I Use.
To match upstream Bootstrap's level of browser compatibility, set Autoprefixer's browsers option to:
[
"Android 2.3",
"Android >= 4",
"Chrome >= 20",
"Firefox >= 24",
"Explorer >= 8",
"iOS >= 6",
"Opera >= 12",
"Safari >= 6"
]
JavaScript
assets/javascripts/bootstrap.js contains all of Bootstrap's JavaScript,
concatenated in the correct order.
JavaScript with Sprockets or Mincer
If you use Sprockets or Mincer, you can require bootstrap-sprockets instead to load the individual modules:
// Load all Bootstrap JavaScript
//= require bootstrap-sprockets
You can also load individual modules, provided you also require any dependencies.
You can check dependencies in the Bootstrap JS documentation.
//= require bootstrap/scrollspy
//= require bootstrap/modal
//= require bootstrap/dropdown
Fonts
The fonts are referenced as:
"#{$icon-font-path}#{$icon-font-name}.eot"
$icon-font-path defaults to bootstrap/ if asset path helpers are used, and ../fonts/bootstrap/ otherwise.
When using bootstrap-sass with Compass, Sprockets, or Mincer, you must import the relevant path helpers before Bootstrap itself, for example:
@import "bootstrap-compass";
@import "bootstrap";
Usage
Sass
Import Bootstrap into a Sass file (for example, application.scss) to get all of Bootstrap's styles, mixins and variables!
@import "bootstrap";
You can also include optional Bootstrap theme:
@import "bootstrap/theme";
The full list of Bootstrap variables can be found here. You can override these by simply redefining the variable before the @import directive, e.g.:
$navbar-default-bg: #312312;
$light-orange: #ff8c00;
$navbar-default-color: $light-orange;
@import "bootstrap";
Eyeglass
Bootstrap is available as an Eyeglass module. After installing Bootstrap via NPM you can import the Bootstrap library via:
@import "bootstrap-sass/bootstrap"
or import only the parts of Bootstrap you need:
@import "bootstrap-sass/bootstrap/variables";
@import "bootstrap-sass/bootstrap/mixins";
@import "bootstrap-sass/bootstrap/carousel";
Version
Bootstrap for Sass version may differ from the upstream version in the last number, known as
PATCH. The patch version may be ahead of the corresponding upstream minor.
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 |
|---|---|
| 3.3.4+ | same |
| 3.3.2 | 3.3.3 |
| <= 3.3.1 | 3.3.1.x |
Always refer to CHANGELOG.md when upgrading.
Development and Contributing
If you'd like to help with the development of bootstrap-sass itself, read this section.
Upstream Converter
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 section above.
Upstream changes to the Bootstrap project can now be pulled in using the convert rake task.
Here's an example run that would pull down the master branch from the main twbs/bootstrap repo:
rake convert
This will convert the latest LESS to Sass and update to the latest JS.
To convert a specific branch or version, pass the branch name or the commit hash as the first task argument:
rake convert[e8a1df5f060bf7e6631554648e0abde150aedbe4]
The latest converter script is located here and does the following:
- Converts upstream Bootstrap LESS files to its matching SCSS file.
- Copies all upstream JavaScript into
assets/javascripts/bootstrap, a Sprockets manifest atassets/javascripts/bootstrap-sprockets.js, and a concatenation atassets/javascripts/bootstrap.js. - Copies all upstream font files into
assets/fonts/bootstrap. - Sets
Bootstrap::BOOTSTRAP_SHAin version.rb to the branch sha.
This converter fully converts original LESS to SCSS. Conversion is automatic but requires instructions for certain transformations (see converter output).
Please submit GitHub issues tagged with conversion.
Credits
bootstrap-sass has a number of major contributors:
- Thomas McDonald
- Tristan Harward
- Peter Gumeson
- Gleb Mazovetskiy
and a significant number of other contributors.
You're in good company
bootstrap-sass is used to build some awesome projects all over the web, including
Diaspora, rails_admin,
Michael Hartl's Rails Tutorial, gitlabhq and
kandan.
Owner metadata
- Name: Bootstrap
- Login: twbs
- Email:
- Kind: organization
- Description: Source code and more for the most popular front-end framework in the world.
- Website: https://getbootstrap.com
- Location: San Francisco
- Twitter: getbootstrap
- Company:
- Icon url: https://avatars.githubusercontent.com/u/2918581?v=4
- Repositories: 26
- Last ynced at: 2024-10-29T22:38:46.545Z
- Profile URL: https://github.com/twbs
GitHub Events
Total
- Issues event: 1
- Watch event: 27
- Issue comment event: 10
- Pull request event: 3
- Fork event: 22
Last Year
- Issues event: 1
- Watch event: 23
- Issue comment event: 8
- Pull request event: 2
- Fork event: 19
Committers metadata
Last synced: 1 day ago
Total Commits: 890
Total Committers: 118
Avg Commits per committer: 7.542
Development Distribution Score (DDS): 0.424
Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0
| Name | Commits | |
|---|---|---|
| Gleb Mazovetskiy | g****b@g****m | 513 |
| Thomas McDonald | t****m@c****k | 134 |
| Tristan Harward | t****b@g****m | 41 |
| Peter Gumeson | g****n@g****m | 39 |
| Chris Rebert | g****b@c****m | 21 |
| Lori M Olson | l****i@w****m | 4 |
| April Arcus | r****l@g****m | 4 |
| Phil Thompson | p****l@b****m | 3 |
| Morton Jonuschat | y****k@g****m | 3 |
| Julian Kornberger | j****b@d****e | 3 |
| Jonathan Kelley | j****y@g****m | 3 |
| Eugeny Vlasenko | m****k@g****m | 3 |
| Robert Jackson | r****j@p****m | 3 |
| unknown | m****n@b****l | 3 |
| michael shiplett | w****s@m****m | 2 |
| Umair Siddique | u****e@g****m | 2 |
| Sudipta Bandyopadhyay | s****1@g****m | 2 |
| Rafael Mendonça França | r****a@g****m | 2 |
| Jean-Philippe Bidegain | jp@b****n | 2 |
| Daniel Bayerlein | d****n@g****m | 2 |
| Benoit Bénézech | b****h@g****m | 2 |
| Rafael Mendonça França | r****a@p****r | 2 |
| Thomas McDonald | t****1@g****m | 2 |
| AJ Acevedo | aj@a****m | 1 |
| Adam | a****e@g****m | 1 |
| Agis Anastasopoulos | c****c@g****m | 1 |
| Aleksey V. Zapparov | i****i@m****g | 1 |
| Alex Zaytsev | z****x@g****m | 1 |
| Amit Portnoy | a****y@g****m | 1 |
| Andrew Nesbitt | a****z@g****m | 1 |
| and 88 more... | ||
Committer domains:
- mhlavac.net: 1
- kakao.com: 1
- dandaraga.net: 1
- albin.net: 1
- lazyatom.com: 1
- molotovcoop.org: 1
- theclymb.com: 1
- redhat.com: 1
- seznam.cz: 1
- schilling.io: 1
- tdreyno.com: 1
- owyong.sk: 1
- bittner.it: 1
- iki.fi: 1
- lanpartei.de: 1
- guzenski.com.br: 1
- carlosdp.io: 1
- laposte.net: 1
- instacart.com: 1
- mohni.sh: 1
- multichannel.net: 1
- puffy.name: 1
- handlino.com: 1
- pivotallabs.com: 1
- sevenfifty.comexit: 1
- coliloquy.com: 1
- trunkmedia.com: 1
- nedforce.nl: 1
- mail.rakuten.com: 1
- modeltwozero.com: 1
- cabgfx.com: 1
- brycekerley.net: 1
- member.fsf.org: 1
- ajalabs.com: 1
- plataformatec.com.br: 1
- bidega.in: 1
- me.com: 1
- promedicalinc.com: 1
- digineo.de: 1
- bhsowebdesign.com: 1
- google.com: 1
- wndx.com: 1
- chrisrebert.com: 1
- conceptcoding.co.uk: 1
Issue and Pull Request metadata
Last synced: 6 days ago
Total issues: 82
Total pull requests: 45
Average time to close issues: 8 months
Average time to close pull requests: 3 months
Total issue authors: 81
Total pull request authors: 26
Average comments per issue: 3.59
Average comments per pull request: 1.13
Merged pull request: 4
Bot issues: 0
Bot pull requests: 0
Past year issues: 0
Past year pull requests: 4
Past year average time to close issues: N/A
Past year average time to close pull requests: 3 months
Past year issue authors: 0
Past year pull request authors: 2
Past year average comments per issue: 0
Past year average comments per pull request: 0.0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- Eseperio (2)
- MartinSoderholm (1)
- ryanhageman (1)
- janzenz (1)
- linux019 (1)
- krigga (1)
- boenrobot (1)
- WebDweller (1)
- romanstingler (1)
- dennisvandehoef (1)
- parapada73 (1)
- santhosh12992 (1)
- PeterVenhuizen (1)
- bassjobsen (1)
- cyrusstoller (1)
Top Pull Request Authors
- ghost (5)
- mountainboooy (4)
- AprilArcus (3)
- redwade (3)
- 0sahilahmed (2)
- lelorelo (2)
- Emanuel2512-Ndiwa (2)
- tomastan (2)
- mechanicalgux (2)
- darren-arbon (2)
- Rockyspade (2)
- sebastianludwig (2)
- Whatapalaver (1)
- spovich (1)
- mathieujobin (1)
Top Issue Labels
- feature (3)
- docs (1)
Top Pull Request Labels
Package metadata
- Total packages: 28
-
Total downloads:
- npm: 1,346,473 last-month
- nuget: 111,355 total
- rubygems: 143,635,316 total
- pypi: 33,312 last-month
- packagist: 1,779,387 total
- Total docker downloads: 820,368,600
- Total dependent packages: 1,608 (may contain duplicates)
- Total dependent repositories: 274,940 (may contain duplicates)
- Total versions: 597
- Total maintainers: 17
- Total advisories: 9
gem.coop: bootstrap-sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Documentation: http://www.rubydoc.info/gems/bootstrap-sass/
- Licenses: MIT
- Latest release: 3.4.1 (published almost 7 years ago)
- Last Synced: 2025-12-16T07:51:44.534Z (about 8 hours ago)
- Versions: 59
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 71,816,001 Total
- Docker Downloads: 45,006,205
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.13%
- Downloads: 0.39%
- Maintainers (1)
- Advisories:
bower.io: bootstrap-sass-official
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: MIT
- Latest release: v3.4.3 (published almost 4 years ago)
- Last Synced: 2025-12-15T14:34:13.437Z (1 day ago)
- Versions: 63
- Dependent Packages: 52
- Dependent Repositories: 16,982
-
Rankings:
- Dependent repos count: 0.057%
- Dependent packages count: 0.171%
- Average: 0.251%
- Forks count: 0.272%
- Stargazers count: 0.504%
bower.io: bootstrap-sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: MIT
- Latest release: v3.4.3 (published almost 4 years ago)
- Last Synced: 2025-12-01T14:12:53.069Z (15 days ago)
- Versions: 63
- Dependent Packages: 62
- Dependent Repositories: 12,135
-
Rankings:
- Dependent repos count: 0.075%
- Dependent packages count: 0.158%
- Average: 0.252%
- Forks count: 0.272%
- Stargazers count: 0.504%
rubygems.org: bootstrap-sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Documentation: http://www.rubydoc.info/gems/bootstrap-sass/
- Licenses: MIT
- Latest release: 3.4.1 (published almost 7 years ago)
- Last Synced: 2025-12-16T10:53:49.786Z (about 5 hours ago)
- Versions: 59
- Dependent Packages: 417
- Dependent Repositories: 155,544
- Downloads: 71,819,315 Total
- Docker Downloads: 45,006,205
-
Rankings:
- Forks count: 0.092%
- Stargazers count: 0.093%
- Dependent repos count: 0.101%
- Dependent packages count: 0.109%
- Average: 0.255%
- Downloads: 0.345%
- Docker downloads count: 0.787%
- Maintainers (1)
- Advisories:
npmjs.org: bootstrap-sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 3.4.3 (published almost 4 years ago)
- Last Synced: 2025-12-15T22:11:05.286Z (about 17 hours ago)
- Versions: 15
- Dependent Packages: 1,027
- Dependent Repositories: 89,805
- Downloads: 1,346,371 Last month
- Docker Downloads: 730,356,190
-
Rankings:
- Dependent packages count: 0.065%
- Dependent repos count: 0.111%
- Docker downloads count: 0.158%
- Downloads: 0.265%
- Average: 0.354%
- Forks count: 0.59%
- Stargazers count: 0.935%
- Maintainers (4)
- Advisories:
packagist.org: twbs/bootstrap-sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: http://github.com/twbs/bootstrap-sass
- Licenses: MIT
- Latest release: v3.4.3 (published almost 4 years ago)
- Last Synced: 2025-12-16T04:32:08.693Z (about 11 hours ago)
- Versions: 15
- Dependent Packages: 27
- Dependent Repositories: 282
- Downloads: 1,779,387 Total
-
Rankings:
- Forks count: 0.012%
- Stargazers count: 0.02%
- Average: 0.425%
- Dependent repos count: 0.541%
- Dependent packages count: 0.746%
- Downloads: 0.806%
- Maintainers (2)
-
Funding:
bower.io: twbs-bootstrap-sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: MIT
- Latest release: v3.4.3 (published almost 4 years ago)
- Last Synced: 2025-12-01T12:38:00.217Z (15 days ago)
- Versions: 63
- Dependent Packages: 1
- Dependent Repositories: 113
-
Rankings:
- Forks count: 0.279%
- Stargazers count: 0.503%
- Dependent repos count: 1.542%
- Average: 1.9%
- Dependent packages count: 5.277%
bower.io: bootstrap-sass-twbs
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: MIT
- Latest release: v3.4.3 (published almost 4 years ago)
- Last Synced: 2025-12-14T10:05:47.691Z (2 days ago)
- Versions: 63
- Dependent Packages: 0
- Dependent Repositories: 44
-
Rankings:
- Forks count: 0.272%
- Stargazers count: 0.504%
- Average: 2.171%
- Dependent repos count: 2.631%
- Dependent packages count: 5.277%
bower.io: boostrap-sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: MIT
- Latest release: v3.4.3 (published almost 4 years ago)
- Last Synced: 2025-12-14T10:05:47.602Z (2 days ago)
- Versions: 63
- Dependent Packages: 0
- Dependent Repositories: 12
-
Rankings:
- Forks count: 0.272%
- Stargazers count: 0.504%
- Average: 2.89%
- Dependent packages count: 5.277%
- Dependent repos count: 5.508%
pypi.org: xstatic-bootstrap-scss
Bootstrap-SCSS 3.4.1 (XStatic packaging standard)
- Homepage: https://github.com/twbs/bootstrap-sass
- Documentation: https://xstatic-bootstrap-scss.readthedocs.io/
- Licenses: MIT
- Latest release: 3.4.1.0 (published over 5 years ago)
- Last Synced: 2025-12-14T10:05:35.014Z (2 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 5
- Downloads: 33,312 Last month
-
Rankings:
- Forks count: 0.099%
- Stargazers count: 0.147%
- Downloads: 2.068%
- Average: 3.293%
- Dependent repos count: 6.776%
- Dependent packages count: 7.373%
- Maintainers (1)
proxy.golang.org: github.com/twbs/bootstrap-sass
- Homepage:
- Documentation: https://pkg.go.dev/github.com/twbs/bootstrap-sass#section-documentation
- Licenses: mit
- Latest release: v3.4.3+incompatible (published almost 4 years ago)
- Last Synced: 2025-12-14T10:05:35.075Z (2 days ago)
- Versions: 30
- Dependent Packages: 0
- Dependent Repositories: 1
-
Rankings:
- Forks count: 0.087%
- Stargazers count: 0.541%
- Average: 3.469%
- Dependent repos count: 4.794%
- Dependent packages count: 8.453%
nuget.org: bootstrap-sass
Bootstrap Sass for ASP.NET MVC project. Installs sass files in the /Content folder and js files in the /Scripts folder.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: mit
- Latest release: 3.3.5 (published over 10 years ago)
- Last Synced: 2025-12-14T10:05:34.607Z (2 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 11
- Downloads: 111,355 Total
-
Rankings:
- Forks count: 0.107%
- Stargazers count: 0.111%
- Dependent repos count: 2.128%
- Downloads: 4.59%
- Average: 5.53%
- Dependent packages count: 20.713%
- Maintainers (1)
bower.io: customer_club
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: MIT
- Latest release: v3.4.3 (published almost 4 years ago)
- Last Synced: 2025-12-14T10:05:47.679Z (2 days ago)
- Versions: 63
- Dependent Packages: 0
- Dependent Repositories: 1
-
Rankings:
- Forks count: 0.272%
- Stargazers count: 0.504%
- Dependent packages count: 5.277%
- Average: 6.535%
- Dependent repos count: 20.086%
nuget.org: bootstrap-sass-test
Bootstrap Sass for ASP.NET MVC project. Installs sass files in the /Content folder and js files in the /Scripts folder.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: mit
- Latest release: 3.3.5 (published almost 126 years ago)
- Last Synced: 2025-12-14T10:05:33.276Z (2 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.074%
- Forks count: 0.083%
- Average: 8.1%
- Dependent repos count: 12.697%
- Dependent packages count: 19.548%
npmjs.org: napos-bootstrap
bootstrap-sass is a Sass-powered version of Bootstrap, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 1.0.0 (published over 10 years ago)
- Last Synced: 2025-12-14T10:05:32.412Z (2 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 17 Last month
-
Rankings:
- Forks count: 0.59%
- Stargazers count: 0.935%
- Average: 10.087%
- Dependent repos count: 10.768%
- Downloads: 16.83%
- Dependent packages count: 21.31%
- Maintainers (1)
repo1.maven.org: org.webjars.bower:bootstrap-sass
WebJar for bootstrap-sass
- Homepage: http://webjars.org
- Documentation: https://appdoc.app/artifact/org.webjars.bower/bootstrap-sass/
- Licenses: MIT
- Latest release: 3.3.7 (published about 9 years ago)
- Last Synced: 2025-12-14T10:05:37.879Z (2 days ago)
- Versions: 7
- Dependent Packages: 6
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 1.298%
- Forks count: 1.327%
- Dependent packages count: 9.331%
- Average: 10.984%
- Dependent repos count: 31.98%
repo1.maven.org: org.webjars.npm:bootstrap-sass
WebJar for bootstrap-sass
- Homepage: http://webjars.org
- Documentation: https://appdoc.app/artifact/org.webjars.npm/bootstrap-sass/
- Licenses: MIT
- Latest release: 3.4.1 (published over 6 years ago)
- Last Synced: 2025-12-14T10:05:32.874Z (2 days ago)
- Versions: 4
- Dependent Packages: 5
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 1.298%
- Forks count: 1.327%
- Dependent packages count: 11.045%
- Average: 11.412%
- Dependent repos count: 31.98%
npmjs.org: cacpro-bootstrap-sass
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 3.4.1 (published over 2 years ago)
- Last Synced: 2025-12-14T10:05:32.230Z (2 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 10 Last month
-
Rankings:
- Forks count: 0.557%
- Stargazers count: 0.868%
- Average: 11.869%
- Dependent repos count: 18.77%
- Dependent packages count: 27.282%
- Maintainers (1)
repo1.maven.org: org.webjars.bower:bootstrap-sass-official
WebJar for bootstrap-sass
- Homepage: http://webjars.org
- Documentation: https://appdoc.app/artifact/org.webjars.bower/bootstrap-sass-official/
- Licenses: MIT
- Latest release: 3.3.7 (published about 9 years ago)
- Last Synced: 2025-12-14T10:05:32.820Z (2 days ago)
- Versions: 6
- Dependent Packages: 3
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 1.298%
- Forks count: 1.327%
- Average: 12.877%
- Dependent packages count: 16.904%
- Dependent repos count: 31.98%
npmjs.org: lentiamo-bs-sass-modular
bootstrap-sass-modular is a Sass-powered version of Bootstrap 3 using modular system.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 3.4.3 (published 8 months ago)
- Last Synced: 2025-12-14T10:05:29.689Z (2 days ago)
- Versions: 3
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 34 Last month
-
Rankings:
- Forks count: 0.752%
- Stargazers count: 1.153%
- Average: 14.617%
- Dependent packages count: 16.22%
- Dependent repos count: 25.306%
- Downloads: 29.656%
- Maintainers (1)
npmjs.org: avanti-bootstrap-sass
avanti-bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 3.3.7 (published over 7 years ago)
- Last Synced: 2025-12-14T10:05:34.616Z (2 days ago)
- Versions: 1
- Dependent Packages: 3
- Dependent Repositories: 1
- Downloads: 8 Last month
-
Rankings:
- Forks count: 0.59%
- Stargazers count: 0.935%
- Dependent packages count: 8.786%
- Dependent repos count: 10.768%
- Average: 15.281%
- Downloads: 55.326%
- Maintainers (1)
nuget.org: bootstrap-sass-test2
Bootstrap Sass for ASP.NET MVC project. Installs sass files in the /Content folder and js files in the /Scripts folder.
- Homepage: https://github.com/twbs/bootstrap-sass
- Licenses: mit
- Latest release: 3.3.5 (published almost 126 years ago)
- Last Synced: 2025-12-14T10:05:28.547Z (2 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 12.697%
- Average: 16.122%
- Dependent packages count: 19.548%
npmjs.org: bootstrap-sass-medved
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 3.3.7 (published over 6 years ago)
- Last Synced: 2025-12-14T10:05:35.642Z (2 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 5 Last month
-
Rankings:
- Forks count: 0.59%
- Stargazers count: 0.935%
- Dependent repos count: 10.768%
- Average: 16.583%
- Dependent packages count: 21.31%
- Downloads: 49.313%
- Maintainers (1)
npmjs.org: decathlon-bootstrap-sass
decathlon-bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 3.3.8 (published over 6 years ago)
- Last Synced: 2025-12-14T10:05:32.317Z (2 days ago)
- Versions: 2
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 5 Last month
-
Rankings:
- Forks count: 0.59%
- Stargazers count: 0.935%
- Dependent repos count: 10.768%
- Average: 17.786%
- Dependent packages count: 21.31%
- Downloads: 55.326%
- Maintainers (1)
npmjs.org: bootstrap-sass-modular
bootstrap-sass-modular is a Sass-powered version of Bootstrap 3 using modular system.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 3.4.1 (published about 4 years ago)
- Last Synced: 2025-12-14T10:05:32.425Z (2 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 2 Last month
-
Rankings:
- Forks count: 0.721%
- Stargazers count: 1.099%
- Dependent packages count: 16.224%
- Average: 19.504%
- Dependent repos count: 25.328%
- Downloads: 54.149%
- Maintainers (1)
repo1.maven.org: org.webjars.bowergithub.twbs:bootstrap-sass
WebJar for bootstrap-sass
- Homepage: http://webjars.org
- Documentation: https://appdoc.app/artifact/org.webjars.bowergithub.twbs/bootstrap-sass/
- Licenses: MIT
- Latest release: 3.4.1 (published over 6 years ago)
- Last Synced: 2025-12-14T10:05:33.464Z (2 days ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 1.298%
- Forks count: 1.327%
- Average: 20.866%
- Dependent repos count: 31.98%
- Dependent packages count: 48.86%
npmjs.org: senthilc-volta-dev-bootstrap-sass
Test.
- Homepage: https://github.com/twbs/bootstrap-sass#readme
- Licenses: MIT
- Latest release: 1.0.0 (published almost 9 years ago)
- Last Synced: 2025-12-14T10:05:35.717Z (2 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 21 Last month
-
Rankings:
- Forks count: 0.59%
- Stargazers count: 0.935%
- Dependent repos count: 10.768%
- Average: 25.112%
- Dependent packages count: 53.583%
- Downloads: 59.685%
- Maintainers (1)
rubygems.org: bootstrap-sass-mokum
bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.
- Homepage: https://github.com/twbs/bootstrap-sass
- Status: removed
- Documentation: http://www.rubydoc.info/gems/bootstrap-sass-mokum/
- Licenses: MIT
- Latest release: 3.4.2 (published almost 3 years ago)
- Last Synced: 2025-12-14T10:05:33.055Z (2 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 0 Total
-
Rankings:
- Stargazers count: 0.052%
- Forks count: 0.054%
- Dependent packages count: 15.673%
- Average: 32.298%
- Dependent repos count: 46.016%
- Downloads: 99.695%
- Maintainers (1)
Dependencies
- jquery 1.9.1 - 3
- 187 dependencies
- ejs ~2.6.1 development
- mincer ~1.4.0 development
- sass ^1.33 development
- byebug >= 0 development
- actionpack >= 4.1.5 development
- activesupport >= 4.1.5 development
- capybara ~> 3.6 development
- jquery-rails >= 3.1.0 development
- json >= 1.8.1 development
- minitest ~> 5.11 development
- minitest-reporters ~> 1.3 development
- poltergeist >= 0 development
- sassc-rails >= 2.0.0 development
- slim-rails >= 0 development
- sprockets-rails >= 2.1.3 development
- term-ansicolor >= 0 development
- uglifier >= 0 development
- autoprefixer-rails >= 5.2.1
- sassc >= 2.0.0
- bootstrap-sass >= 0
- sassc >= 2.0.0
Score: 34.89971554731648