克隆我的 git repo 后,我的应用程序坏了。我将它(删除了 bootstrap_and_overrides.css.less )修复到我现在可以实际看到页面的地步,但下拉列表和选项卡已损坏。这让我认为,由于某种原因,没有加载引导响应。以下是我认为的罪魁祸首。
宝石文件
gem 'rails', '~> 3.2.6'
gem 'bootstrap-sass', '~> 2.0.4.0'
gem 'less', '~> 2.2.0'
应用程序.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";
哎呀,请帮忙?