我正在开发一个 Rails 应用程序并使用 twitter bootstrap 来加速这个过程。但是,我正在尝试将 .well 类更改为图像而不仅仅是颜色,但我没有找到正确的变量。
我努力了:
@wellBackground: asset-url('path_to_file');
并且想得很好,也许它会是:
@wellBackgroundImage: asset-url('path_to_file');
似乎都没有让我到达我想去的地方。任何帮助,将不胜感激。
所以我把它拉到它自己的css文件中,但我仍然没有得到图像。
.well.sidebar-nav{
background: #C4C4C4 url('/app/assets/images/tweed.png') repeat-x top left ;
color: #FFFFFF;
}
但是我仍然没有在背景中获得图像。也许是 RoR 问题的路径?