After cloning my git repo, my app was broken. I fixed it ( Deleted the bootstrap_and_overrides.css.less ) to the point where I can actually see the pages now but the drop down lists and tabs are broken. This makes me think the bootstrap-responsive, for some reason, isn’t being loaded. Below is what I feel are the culprits.
Gemfile
gem 'rails', '~> 3.2.6'
gem 'bootstrap-sass', '~> 2.0.4.0'
gem 'less', '~> 2.2.0'
application.js
//= require bootstrap
//= require_tree .
//= require jquery_ujs
//= require jquery-ui
bootstrap_and_overrides.css.scss
$iconSpritePath: image-path('/glyphicons-halflings.png');
$iconWhiteSpritePath: image-path('glyphicons-halflings-white.png');
$navbarBackground: #555;
$navbarBackgroundHighlight: #888;
$navbarText: #eee;
$navbarLinkColor: #eee;
@import "bootstrap";
body { padding-top: 60px; }
@import "bootstrap-responsive";
Eek, help please?
I finally found out the answer if anyone comes across this, hopefully it will help. What was going on was I had included the bootstrap-responsive.css which was being loaded twice. It’s already included in my bootstrap_and_overrides.css.scss file. I deleted the extra css file that was not needed and blamo it works.