Rename form-row to standard-form-row to avoid clashing with a bootstrap class

This commit is contained in:
Andy Allan 2020-01-15 13:23:53 +01:00
parent ee8ce8c3ab
commit f885cfe0f5
14 changed files with 83 additions and 83 deletions

View file

@ -7,11 +7,11 @@
<%= form_for @message, :html => { :class => "standard-form" } do |f| %>
<%= hidden_field_tag :display_name, @message.recipient.display_name %>
<fieldset>
<div class='form-row'>
<div class='standard-form-row'>
<label class="standard-label" for="message_title"><%= t ".subject" %></label>
<%= f.text_field :title, :size => 60, :class => "richtext_title" %>
</div>
<div class='form-row'>
<div class='standard-form-row'>
<label class="standard-label" for="message_body"><%= t ".body" %></label>
<%= richtext_area :message, :body, :cols => 80, :rows => 20 %>
</div>