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

Rails Bootstrap how to format form_for (width grid collapses)

I'm trying to make a form with bootstrap-sass. I need to find the optimal configuration of bootstrap classes to make it look nice. It is not showing up the way I expect, specifically when the browser width is smaller than a certain size the spaces…
Chemist
  • 967
  • 2
  • 15
  • 28
4
votes
1 answer

Web application with Angular CLI does not display bootstrap-sass glyphicons

I have an application I created with Angular CLI, and I am using bootstrap-sass to customize the theme. I am using the following versions... node: 6.9.5 os: win32 x64 @angular/common: 2.4.8 @angular/cli: 1.0.0-rc.0 @angular/compiler-cli:…
4
votes
1 answer

DRY approach in bootstrap-sass: should I import custom variables before or after _variables.scss?

I'm rolling out my own bootstrap-sass customization in a pretty big project. In my git repo I have my own application.scss file which mirrors the original bootstrap.scss, removing what I don't need and adding my own custom variables, mixins and…
bardo
  • 363
  • 2
  • 10
4
votes
3 answers

References to font (font-awesome) resources are not updated in yeoman/angular grunt build

I'm aware of the SO threads about this (I've linked them below), but unfortunately I couldn't solve this with them, so please allow me this question :-) I've bootstrapped an AngularJS project with Yeoman and thus rely on a grunt.js build utilizing…
Markus
  • 610
  • 1
  • 9
  • 23
4
votes
3 answers

Using twitter bootstrap 3 with rails using bootstrap-sass gem

Right now my bootstrap css version is v2.3.2 with following gem gem 'bootstrap-sass', '~> 2.3.2.1' I tried to upgrade it by using following configuration gem 'bootstrap-sass', git: 'https://github.com/thomas-mcdonald/bootstrap-sass.git', branch:…
Amir Hoseinian
  • 2,312
  • 2
  • 24
  • 27
4
votes
2 answers

Inlining Bootstrap SASS images with Compass

A bit about environment: we do UI build automation with Grunt, we do use Twitter Bower for managing third-party dependencies, as we don't want to keep third-party code in our repository, we use Compass for CSS extension. Currently making a…
nefo_x
  • 3,050
  • 4
  • 27
  • 40
4
votes
4 answers

Rails 3.2 bootstrap-sass not installing

I'm trying to install the bootstrap-sass gem on my Rails 3.2 app, but encounter this error when I call compass install bootstrap : No such framework: "bootstrap" I have the gem installed in my Gemfile: gem 'compass', '~> 0.12.2' group :assets do …
3
votes
0 answers

Why table,tr,td,etc is not part of the default whitelist elements for the new sanitize html method in version 3.4.1 of bootstrap-sass gem?

I was checking out the changes of the new version (3.4.1) of bootstrap-sass gem, https://github.com/twbs/bootstrap-sass, because my popover that rendered a table inside stopped working, and was wondering why the tags related to table as table…
3
votes
3 answers

I can't Integrate Bootstrap in my Ruby on Rails App

I have tried every tutorial and every guide but I am not able to integrate bootstrap in my rails app I have tried bootstrap-sass gem, bootstrap CDN, bootstrap gem Ruby on Rails version 5.2.0 Ruby version 2.2.6 EXACTLY FOLLOWED THESE TUTORIALS AND…
3
votes
2 answers

Import Bootstrap 3 CSS into Angular 2+ with SASS as CSS

I need to override some things in Bootstrap (3.3.7) CSS, so I need to load Bootstrap before all my other styles in order to do that. I understand the way to do that is to import it in my application's main styles.sass at the top of the document.…
BBaysinger
  • 6,614
  • 13
  • 63
  • 132
3
votes
1 answer

what should application.scss look like when using bootstrap-sass ruby on rails

when using bootstrap-sass the documentation says to: remove all the *= require_self and *= require_tree . statements from the sass file. Instead, use @import to import Sass files. my current application.scss looks like /* * This is a manifest…
ChadTheDev
  • 399
  • 3
  • 13
3
votes
1 answer

Webpack sass-loader with bootstrap

I have just got my head into webpack but it has now thrown a fit when i try to include bootstrap-sass from the index.scss file. This webpack conf works great and outputs a .css file to css/stylehseet.css 'use strict'; var path =…
user1037355
3
votes
1 answer

File to import not found or unreadable compass - IntelliJ

I am trying to develop my first page with bootstrap and SASS with IntelliJ Idea Framework. When I type in main.scss @import "compass" an error message is displayed: cmd.exe /D /C call C:/Ruby22-x64/bin/scss.bat --no-cache --update…
3
votes
1 answer

rails5-bootstrap-sass navbar responsiveness not working

Why is it that navbar responsiveness not working on Rails 5. I am using bootstrap-sass gem. I've already search on the internet and tried for possible solutions yet I got no luck. Here is my /app/assets/stylesheets/application.css.scss /* * This is…
ggcodes
  • 2,859
  • 6
  • 21
  • 34
3
votes
0 answers

Can't get .scss file out of gulp-main-bower-files

I am using the gulp-main-bower-files plug-in to get the main scss file out of the bootstrap-sass folder. Here is my task code: gulp.task('bower-scss', function() { var scssFilter = gulpFilter(['**/**/.scss']); return…
freetoplay
  • 657
  • 2
  • 8
  • 23
1 2
3
20 21