私は Rails を学んでいて、Rails と Twitter Bootstrap で遊んでみたいと思っています。私のRailsプロジェクトのレイアウトは次のとおりです。
├─assets
│ ├─images
│ ├─javascripts
│ └─stylesheets
├─controllers
├─helpers
├─mailers
├─models
└─views
├─course
└─layouts
Twitter Bootstrap のレイアウトは次のとおりです。
├─css
├─img
└─js
Bootstrap css ファイルが次のようなイメージ ファイルを参照していることは知っています。
[class*=" icon-"] {
display: inline-block;
width: 14px;
height: 14px;
*margin-right: .3em;
line-height: 14px;
vertical-align: text-top;
background-image: url("../img/glyphicons-halflings.png");
background-position: 14px 14px;
background-repeat: no-repeat;
margin-top: 1px;
}
そのため、相対位置を保持するか、CSS ファイルを変更する必要があります。Bootstrap 関連の gem を使用したくない場合、これらの Bootstrap ファイルを Rails プロジェクトに配置する最良の方法は何ですか? ありがとう。