0
我有以下形式:Twitter的引導/簡單的形式導致怪異大小的文本框
<%= 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 %>
這是由寶石twitter-bootstrap-rails
爲模型的「編輯」的形式生成的標準腳手架。
所有創建的文本框的高度和長度都很小。我如何使用bootstrap來調整每個「f.input
」的大小?我正在使用rails 4.0.0和最新版本twitter-bootstrap-rails
。
因爲我還沒有研究過這個,我的第一個假設是刪除scaffolds.css.scss,如果你搭建了一個模型,它就會被創建。 –