我有以下表格:
<%= simple_form_for @text_message, :html => { :class => 'form-horizontal' } do |f| %>
<%= f.input :client %>
<%= f.input :unit_type %>
<%= f.input :message %>
<%= f.input :call_type %>
<%= f.input :lead_type %>
<%= f.input :from_number %>
<div class="form-actions">
<%= f.button :submit, :class => 'btn-primary' %>
<%= link_to t('.cancel', :default => t("helpers.links.cancel")),
text_messages_path, :class => 'btn' %>
</div>
<% end %>
这是由gem twitter-bootstrap-rails
为模型的“编辑”表单生成的标准脚手架。
创建的所有文本框的高度和长度都非常小。我如何使用bootstrap来调整每个“f.input
”的大小?我使用的是rails 4.0.0和最新版本的twitter-bootstrap-rails
。
答案 0 :(得分:0)
我通过从.css文件中删除“import @bootstrap
”的所有实例来解决此问题。