Questions tagged [bootstrap-sass]

A Sass-powered version of Bootstrap, ready to drop right into your Sass powered applications.

Overview

Bootstrap Sass is a Sass-powered version of Bootstrap, ready to drop right into your Sass powered applications.

Installation

You can install it in a project using:

Usage

Import Bootstrap Sass into a Sass file to get all styles, variables and mixins :

@import "bootstrap";

You can also import components explicitly.

Links

Related tags




304 questions
2
votes
0 answers

Bootstrap 3 in ES6 wont work

Im trying to use bootrap 3 in es6 by importing it like i do with jquery. But i keep getting this error that i cant figure out. Any solutions? code: import $ from 'jquery'; import jQuery from 'jquery'; import bootstrap from…
user2952238
  • 749
  • 2
  • 11
  • 36
2
votes
1 answer

Glyphicons not working with bootstrap-sass in Angular

I've had an issue with GlyphIcons not loading correctly when using this bower component: https://github.com/twbs/bootstrap-sass I tracked down the issue to finding an @at-root element being injected into my CSS file. I was able to get glyph icons…
David Cruwys
  • 6,262
  • 12
  • 45
  • 91
2
votes
1 answer

Using bootstrap-sass, what would be the hidden-xs equivalent to @include make-sm-column( n )

I am very new to sass and i am trying to convert a bootstrap layout to bootstrap-sass so that i can have multiple "brands" use the same code-behind with different layouts. I've managed to use variations of the following to have two versions with…
2
votes
1 answer

Gruntfile add javascript files

I created a bootstrap-compass project with the following yeoman generator: https://www.npmjs.com/package/generator-bootstrap-compass You can see the file structure in the link. How do I add the javascripts to this gruntfile correctly? The…
herrh
  • 1,328
  • 1
  • 16
  • 33
2
votes
1 answer

compilation of sass bootstrap in sails project

I have SailsJs project. And need to install bootstrap-sass version. I am using grunt-contrib-sass. But do I really need ruby installed? Can I modify grunt, so node-sass will be responsible for compilation?
userbb
  • 2,148
  • 5
  • 30
  • 53
2
votes
0 answers

Prestashop 1.6 : updating version Bootstrap

I'm working in Prestashop 1.6 and I notice that it using the Bootstrap version 3.0.0 and I would like to update at the last version 3.3.4. How should I do this? Do I need to update manually the folder bootstrap_lib? (I use Mac OSX and the terminal)
trollolu
  • 21
  • 4
2
votes
1 answer

Rails 4 Bootstrap partial styling

I've been having trouble integrating bootstrap-sass into any of my Rails 4 projects. So far i'm only getting partial rendering of the bootstrap assets. I've resorted to using using the railstutorial.org in my search for bootstrap functionality. I'm…
2
votes
0 answers

error when compiling compass / bootstrap-sass

i'm running ruby 2.0.0x64 on windows i do gem update --system gem install compass gem install breakpoint gem install bootstrap-sass and then i create a project : compass create -r bootstrap-sass --using bootstrap and then put require…
flairon
  • 103
  • 1
  • 6
2
votes
1 answer

Sprockets::FileNotFound: couldn't find file '../../fonts/bootstrap/glyphicons-halflings-regular.eot'

Tonight I got a strange new error when trying to push to Heroku. Normally pushing to Heroku works fine, but for some reason tonight apparently a glyphicon is missing from bootstrap-sass project and Heroku thus fails to accept a push. Here's the…
user1154796
2
votes
3 answers

Radio buttons in Rails using Bootstrap 3.1.1

I have a form in Rails 4 where I want to use Bootstrap's radio buttons to set a binary value, instead of using a checkbox. I'm using Bootstrap's example as a reference. I want it to look like this:
Dennis
  • 56,821
  • 26
  • 143
  • 139
2
votes
0 answers

twbs-bootstrap-sass + rails 4 not showing glyphicons on production env

I'm using twbs-bootstrap-sass 3.1.1 (installed using bower) working with Rails 4.0.2 The problem is that glyphicons are not working in production environment. I have a app.css.scss file with the following: $icon-font-path:…
2
votes
3 answers

Bootstrap-sass not working within Rails App

I am attempting to contribute to a rails app which has the following in the gemfile: gem 'bootstrap-sass', '~> 2.3.2.2' gem 'sass-rails', '>= 3.2' It seems like everything works correctly in my layouts with the exception of columns:
Luigi
  • 5,443
  • 15
  • 54
  • 108
2
votes
3 answers

Rails + Bootstrap: Font path not including base URI (production)

I'm using the bootstrap-sass gem and in production my rails app is deployed under a subfolder, i.e. the root is http://www.example.com/sub/. Everything works fine except for the fonts (particularly, Glyphicons): in the CSS the path to the font is…
2
votes
2 answers

trying to import bootstrap via bootstrap-sass on heroku but getting an error

I have a rails app and am trying to import bootstrap on heroku with bootstrap-sass following the directions from here: https://github.com/thomas-mcdonald/bootstrap-sass In my application.css, I have: @import "bootstrap"; /* * This is a manifest…
timpone
  • 19,235
  • 36
  • 121
  • 211
2
votes
1 answer

@include makeColumn() Bootstrap Mixin not working

Question Why is the bootstrap-sass makeColumn(X) mixin not behaving the same as the Bootstrap .spanX class? For example, a class using makeColumn(9) does not look the same as the same div using a .span9 class. Context I'm building an application…
Lane Sawyer
  • 370
  • 1
  • 3
  • 16