gpt4 book ai didi

ruby-on-rails - rails : speed up styling

转载 作者:行者123 更新时间:2023-11-28 18:56:09 25 4
gpt4 key购买 nike

也许你知道bootstrap css from twitter ?这绝对是惊人的!它使您能够使用一些默认的 CSS 类快速启动元素。

我认为这是个好主意,尤其是对于 Rails 元素。因为 rails 允许程序员快速开发应用程序,而 bootstrap 允许程序员快速设置样式!

但是有些插件需要一些配置才能与 bootstrap 很好地集成,有时这很痛苦......那么是否有一个存储库,其中一些主要插件(如 simple_form 或 will_paginate)被 fork 以与 bootstrap 很好地集成?

并且以更一般的方式,是否有一个存储库,您可以在其中拥有具有一些出色样式的 Rails 应用程序?使用像 Sass 或 Less 这样的工具,有一些默认的 mixins 来加速样式任务会很棒!

最佳答案

如果您编辑您的初始化器并从 github 中捆绑边缘版本,那么简单的形式已经很好地工作了。

gem 'simple_form', :git => 'git://github.com/plataformatec/simple_form.git'

这是一个完成所有艰苦工作的人的演示应用程序:

https://github.com/rafaelfranca/simple_form-bootstrap

然后你会得到像这样的 bootstrap 样式的表单:

<%= simple_form_for @article, :wrapper => :inline do |f| %>
<%= f.input :disabled_text, :hint => "a simple input", :label => 'My Input' %>
<%= f.input :disabled_text, :disabled => true, :hint => "an example of disabled input" %>
<%= f.input :content_type, :collection => content_type_options, :hint => "simple select box" %>
<% end -%>

关于ruby-on-rails - rails : speed up styling,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7804940/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com