我刚刚在我的 Rails 应用程序中安装了tabulous gem。我也安装了 twitter 引导程序(使用twitter-bootstrap-rails)。
我在关闭 tabulous 的 css 脚手架时遇到问题。我不能按照建议“关闭它”,它会覆盖我的引导 css。
阅读表格参考,我假设默认情况下没有 css 脚手架,并且要打开它,您应该将该use_css_scaffolding
行添加到tabulous.rb
文件中。
我尝试(尽管在文档中没有任何地方)使用use_css_scaffolding = false
没有结果。Css 仍然出现在我生成的 html 中。
我的tabulous.rb
配置文件如下所示:
Tabulous.setup do
tabs do
...
end
customize do
renderer :bootstrap_pill
end
# The following will insert some CSS straight into your HTML so that you
# can quickly prototype an app with halfway-decent looking tabs.
#
# This scaffolding should be turned off and replaced by your own custom
# CSS before using tabulous in production.
end
我还能在哪里禁用这个 CSS 脚手架?