Twitter's Bootstrap, converted to Sass and ready to drop into Ruby frameworks Rails or Compass
1
vote
1answer
30 views
why is my bootstrap view for my rails app acting funny?
I'm using the bootstrap-sass gem and for some reason in the navbar I'm using the active class for one of the li's below, however it doesn't appear pressed down.
application.html.erb:
<!DOCTYPE ...
0
votes
2answers
34 views
Java script not working after precompile
I've built a small site as a learning exercise and to give RoRs a go. I was pleased with the results in "dev" running against WEBrick but am having problems moving the site to "production" served via ...
2
votes
1answer
147 views
Can't get CSS working on Heroku using Rails 4 with bootstrap-saas gem
I have deployed an app to Heroku with one issue I can't seem to get figured out. The CSS for the app via Bootstrap-sass does not load up thus I have an un-styled app. At the moment this is just a ...
-1
votes
0answers
41 views
limit text input size for mobile in simple_form and bootstrap
I want to limit the size of text input for mobile device.
I tried class 'span2' and 'input-medium' but doesn't worked, but sadly it looks urgly as:
I'm using rails 3.2.12, bootstrap-sass 2.3.0.0
...
0
votes
1answer
39 views
Rails 3.2 bootstrap can't style tooltip
I have bootstrap-sass installed in my Rails 3.2 app. I can get bootstrap to work properly, including javascript and the (elusive) tooltips. But I cannot get the tooltips styling to work.
this is the ...
0
votes
1answer
98 views
compass install bootstrap -> NoMethodError on line [“32”] … sass-rails-3.2.6/lib/sass/rails/helpers.rb: undefined method `[]' for nil:NilClass
After running this command
compass install bootstrap
I get this message:
identical sass/styles.scss
...
identical javascripts/bootstrap-typeahead.js
NoMethodError on line ["32"] of ...
0
votes
1answer
142 views
Install Bootstrap in my Ruby on Rails project using bundle install
I am new to Rails. I wanted to use bootstrap so I have placed the 'bootstrap-sass' as in it's documentation in my Gemfile like the following:
group :assets do
gem 'sass-rails', '~> 3.2.3'
...
0
votes
0answers
135 views
Bootstrap Dropdown Not Styling Properly
I'm having an issue with twitter/bootstrap dropdowns not being styled properly. I'm in Rails 3, using the bootstrap-sass gem. The dropdown functions properly, coming down when I click the button, but ...
0
votes
0answers
55 views
Bootstrap sass permission denied
Im getting the following error after I've updated my gemfile and installed the gem:
Errno::EACCES: Permission denied - /Users/xxx/.rvm/gems/ruby-1.9.3-p194/build_info/bootstrap-sass-2.3.1.0.info
...
0
votes
2answers
83 views
IntelliJ 12 won't pull in Sass variables
I have a very basic Ruby on Rails installation. I have installed the bootstrap-sass gem, have the 'bootstrap-sass' ~> 2.3.1.0 in my Gemfile and ran bundle install. Restarted all applications. I ...
0
votes
0answers
184 views
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: ...
3
votes
1answer
212 views
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 ...
0
votes
1answer
44 views
bootstrap-sass, Confusion that define white-space twice time
code {
padding: 0;
color: inherit;
white-space: pre; // first time
white-space: pre-wrap; // why do this twice?
background-color: transparent;
border: 0;
}
it's ...
1
vote
1answer
78 views
Bootstrap::FrameworkNotFound on heroku?
I am using rails 3.2 and have built an application on my development server and it is working fine. But when I deploy the same application to my heroku account I get this error:
...
0
votes
1answer
53 views
Unable to access validation errors using bootstrap_forms gem
Unable to display validation errors using the gem 'bootstrap_forms', '~> 2.0.0' (http://github.com/potenza/bootstrap_form).
models/client.rb
class Client < ActiveRecord::Base
attr_accessible ...
1
vote
0answers
132 views
@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 ...
0
votes
1answer
196 views
Convert grouped_collection_select to Simple Form in Rails dynamic menu?
I have the following (and working) dynamic menu / dropdown which allows you to select a property type and then a property subtype with a regular rails form:
properties.js.coffee
jQuery ->
...
0
votes
1answer
180 views
Easiest way to change when Bootstrap navbar collapses (using bootstrap gem)
I've got a rails app using the bootstrap-sass gem. I'd like to change the width the navbar collapses from tablet (979px) to phone (769px). Overriding a media query isn't a tidy solution.
I've edited ...
0
votes
1answer
77 views
@import 'bootstrap' raise an Action Controller:Exception
I'm developping a Rails app on windows 8 (Rails 3.2.11 and Ruby 1.9.3p125) with a partitioned disk .
My Rails install is on drive "S", my app is on drive "J".
In my gem file I have "gem ...
0
votes
1answer
136 views
Bootstrap, jQuery, and the Rails asset pipeline
This is my application.js manifest.
//= require jquery
//= require jquery_ujs
//= require jquery.purr
//= require best_in_place
//= require jquery-ui
//= require bootstrap-dropdown
//= require ...
0
votes
0answers
408 views
Twitter bootstrap carousel doesn't work with bootstrap-saas gem
In my `application.html.erb' I have included the following carousel:
<div id="banner" class="carousel slide">
<!-- Carousel items -->
<div ...
1
vote
2answers
153 views
rails bootstrap-sass do i need to update bootstrap files?
I am using ROR with bootstrap-sass gem.
It is quite strange, but I can't use some of stylings that are listed here:
http://twitter.github.com/bootstrap/components.html#labels-badges
I thought it is ...
1
vote
1answer
742 views
bootstrap-sass vs pure twitter bootstrap
I know that Twitter Bootstrap may be customized while downloading it from Bootstrap website. How about bootstrap-sass gem - does it always include all the features?
0
votes
0answers
570 views
Using bootstrap-sass gem with javascript from Twitter
I am trying to implement the tooltip functionality as shown here: http://twitter.github.com/bootstrap/javascript.html#tooltips using the Bootstrap-sass gem for Ruby on Rails 3. I have done the ...
2
votes
2answers
1k views
Responsive Twitter bootstrap : <body> and navbar right padding/margin appears when width is < 767/768px
When I resize the windows below 767/768 px width, the body and navbar get a strange right margin/padding (20px each ; which does a total of 40 white pixels at the right side of the navbar). I can't ...
2
votes
1answer
871 views
How to style Twitter Bootstrap's typeahead (e.g. set background color)
How can I set a custom background color for e.g., the active item in the dropdown when using Bootstrap's "typeahead" autocomplete?
A minor problem, but one that has been frustrating me for a couple ...
1
vote
1answer
491 views
bootstrap-datepicker-rails - select date will not persist
I've installed the following gems and am trying to implement a datepicker. The datepicker shows up in the field but when I select a date, the data does not persist or even show up in the field. Am I ...
0
votes
0answers
116 views
jquery replaceWith and bootstrap modal
I am using bootstrap-sass 2.1.1.0 with rails 3.2.9.
I have a ajax form inside modal. like this:
section#avatars_form_edit
= simple_form_for [user, avatar], html: { class: 'edit-avatar' }, remote: ...
0
votes
2answers
211 views
Sass::SyntaxError in Static_pages#contact
I'm following Hartl's tutorial (up to chapter 5 at this point - http://ruby.railstutorial.org/chapters/filling-in-the-layout#code-signup_button) and I feel as though I have followed his instructions ...
0
votes
1answer
1k views
Rails 3 + Twitter Bootstrap + SASS setup
Trying to track down some tricky interactions. Maybe you can see something that I missed. Thanks for taking a moment to look at this! Here's the scenario:
I am using sass-twitter-bootstrap github ...
0
votes
1answer
73 views
compass_twitter_bootstrap or bootstrap_sass - which one should i use?
i'm currently learning sass and compass and wanted to know which gem should i use. I've already installed compass_twitter_bootstrap but like other bootstrap stuff about integration of twitter ...
1
vote
4answers
941 views
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 ...
0
votes
1answer
795 views
Responsive boostrap-sass setup
I'm trying to use boostrap-sass (2.1.0.0) for a responsively designed Ruby on Rails 3.2.8 site. This is my first attempt at responsive design with Rails or Bootstrap.
The problem is that some, but ...
0
votes
2answers
413 views
Twitter Bootstrap Responsive Menu adding Weird arrows on Dropdown
I don't understand why this is happening with my responsive twitter bootstrap nav. Here's a screenshot:
...
9
votes
2answers
2k views
bootstrap-sass: Undefined variable: “$baseLineHeight”
I've integrated bootstrap into my app using bootstrap-sass. The app works fine on my local machine, but when I go to deploy via capistrano, I get this error:
Undefined variable: "$baseLineHeight".
...
9
votes
2answers
4k views
How to use twitter bootstrap with bootstrap-sass in rails app?
I'm quite new to this, but i cannot figure out the problem.
In twitter bootstrap i would use :
<div class="row-fluid">
<div class="span2">Column1</div>
<div ...

