diff options
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/change_status.rhtml | 2 | ||||
-rw-r--r-- | app/views/issues/edit.rhtml | 2 | ||||
-rw-r--r-- | app/views/issues/show.rhtml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/issues/change_status.rhtml b/app/views/issues/change_status.rhtml index 967225694..377e0da2e 100644 --- a/app/views/issues/change_status.rhtml +++ b/app/views/issues/change_status.rhtml @@ -28,7 +28,7 @@ </select></p> <p><label for="notes"><%= l(:field_notes) %></label> -<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10 %></p> +<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %></p> </div> diff --git a/app/views/issues/edit.rhtml b/app/views/issues/edit.rhtml index 78fc4a7a8..bd3e6ad4f 100644 --- a/app/views/issues/edit.rhtml +++ b/app/views/issues/edit.rhtml @@ -19,7 +19,7 @@ <div class="clear"> <p><%= f.text_field :subject, :size => 80, :required => true %></p> -<p><%= f.text_area :description, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :required => true %></p> +<p><%= f.text_area :description, :required => true, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :class => 'wiki-edit' %></p> <% for @custom_value in @custom_values %> <p><%= custom_field_tag_with_label @custom_value %></p> diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 5acc02bcb..442c30abe 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -104,7 +104,7 @@ end %> <h3><%= l(:label_add_note) %></h3>
<% form_tag ({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>
<p><label for="notes"><%=l(:field_notes)%></label>
- <%= text_area_tag 'notes', '', :cols => 60, :rows => 10 %></p>
+ <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
<%= submit_tag l(:button_add) %>
<% end %>
</div>
|