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
0
votes
1 answer

Bootstrap jQuery button & click to toggle text/entry fields

Links in pastebin here: http://pb.gizmokid2005.com/o8s (numbers in each ref refer to lines in the paste). I found a very similar answer to what I'm trying to do on stackoverflow[1]. In short I want to have a button that I can use, in which the text…
0
votes
1 answer

Bootstrap-sass change navbar color

I am attempting to apply the navbar-inverse class to my left navbar. This is my code which lives inside my layout file:
0
votes
1 answer

how to change bootstrap-sass defaults

I am working on a ruby on rails projects using rails 3.2 and bootstrap 3. The gem i am using is bootstrap-sass and it is the most current one. I am trying to change the default attributes of bootstrap's components in my stylesheets file. In the…
user2603138
  • 1,397
  • 2
  • 10
  • 10
0
votes
1 answer

run rake assets:precompile when switching back and forth between bootstrap gem versions?

Working on a project that started out with Bootstrap 2.3, using the bootstrap-sass gem, specifying version 2.3.1.0 in my gemfile. I'm wanting to update it to Bootstrap 3. Here's what the app looks like with bootstrap-sass gem version 2.3.1.0: I…
Jared Rader
  • 850
  • 6
  • 21
0
votes
2 answers

Bootstrap sass gem conflicts between versions 2&3

I'm using bootstrap-sass gem in my Rails project with version 2.3.1.0. However, when pushed up to Heroku, I'm getting the Bootstrap 3 styles. I inspect the CSS style and it indeed does say Bootstrap version 3. On local, the assignment seems to be…
0
votes
1 answer

Compass doesn't recompile scss files on page load in Sinatra app

I've created a sinatra app and I want to include Twitter Bootstrap using the bootstrap-sass gem. Following the installation instructions in the bootstrap-sass readme under Compass (no Rails). After running compass install bootstrap the files get…
0
votes
1 answer

how can i cover bootstrap css style?

I used bootstrap-sass gem in my project. The bootstrap.css file have defined .btn style. I wrote a CSS file and defined .btn style likes > .btn a{ width:90px; height:25px; line-height:25px; background-image:-webkit-gradient(linear, 0 0, 0 100%,…
tsinghan
  • 425
  • 1
  • 4
  • 11
0
votes
0 answers

Sass Mixins Not Available in bootstrap-sass Project

I have a Rails 4 project with bootstrap-sass and mixins like border-radius(3px) are unrecognized. I'm not certain what I'm doing wrong, but here are what I think are the relevant file parts: // myfile.css.scss @import "bootstrap"; #hotel-form { …
Steve Ross
  • 4,134
  • 1
  • 28
  • 40
0
votes
2 answers

Bootstrap works in development but not heroku

I am working through Michael Hartl's Rails tutorial, and after including a bootstrap gem I cannot get the formatting to work when I push to Heroku. Everything looks great on localhost:3000. Here's my gemfile: source 'https://rubygems.org' ruby…
Virge Assault
  • 1,356
  • 6
  • 18
  • 40
0
votes
1 answer

Bootstrap SASS generates vendor folder

I have set up Bootstrap SASS, everything works almost fine, except that compass generates a foloder vendor/bootstrap.css beside the styles.css file. This is weird because the bootstrap is already included in style.css. I couldn't find any…
Tudor Ravoiu
  • 2,130
  • 8
  • 35
  • 56
0
votes
0 answers

bootstrap-sass not working in production with apache server fix

I have searched and followed this post with a similar problem only with Heroku instead of apache. My gem file is very similar, application was working fine in development env but when I switch to production, apache server would stop rendering all of…
Dmitry Matveev
  • 5,320
  • 1
  • 32
  • 43
0
votes
1 answer

unable to bundle install bootstrap-sass -v '2.2.2.0' -

New to RoR and taking the One Month Rails class (onemonthrails.com) I'm trying to import bootstrap. ruby 2.0.0p247 rails 4.0.0 Here's my Gemfile (showing only the 'bootstrap-sass'line) : Bootstrap Gem gem 'bootstrap-sass', '~> 2.2.2.0' And this is…
Diego
  • 1
  • 2
0
votes
1 answer

Bootstrap-sass gem, "Could not find generator"

After adding 'bootstrap-sass' when I am trying to install it i.e by rails g bootstrap:install, I am getting following message. "Could not find generator bootstrap:install" Am I missing anything? Thanks My Gemfile below: source…
Subrat Rout
  • 95
  • 2
  • 16
0
votes
1 answer

Bootstrap Modal Does Not Appear When Bootstrap-Transition.js IS included

I'm using Thomas McDonals's bootstrap-sass gem within my rails application and whenever I include bootstrap-transition.js my modal popup no longer appears. The background fades in, but the actual modal window does not present itself. It's not even…
ac360
  • 7,735
  • 13
  • 52
  • 91
0
votes
1 answer

No such file to load -- sass-rails

I'm trying to deploy a rails application to jruby/tomcat. The app already runs in jruby with webrick in dev environment. When deploying to tomcat through warbler I get an error "no such file to load -- sass-rails" I did precompile my assets with…
kranz
  • 599
  • 1
  • 6
  • 23