From dae2d4686e721e494c17e2cc8066e07a2291562c 2007-03-11 14:22:53 From: Jean-Philippe Lang Date: 2007-03-11 14:22:53 Subject: [PATCH] width of all wiki content textareas set to 99.5% git-svn-id: http://redmine.rubyforge.org/svn/trunk@329 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/documents/_form.rhtml b/app/views/documents/_form.rhtml index b075b46..40bbdc6 100644 --- a/app/views/documents/_form.rhtml +++ b/app/views/documents/_form.rhtml @@ -10,7 +10,7 @@ <%= text_field 'document', 'title', :size => 60 %>

-<%= text_area 'document', 'description', :cols => 60, :rows => 15 %>

+<%= text_area 'document', 'description', :cols => 60, :rows => 15, :class => 'wiki-edit' %>

diff --git a/app/views/issues/change_status.rhtml b/app/views/issues/change_status.rhtml index 9672256..377e0da 100644 --- a/app/views/issues/change_status.rhtml +++ b/app/views/issues/change_status.rhtml @@ -28,7 +28,7 @@

-<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10 %>

+<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>

diff --git a/app/views/issues/edit.rhtml b/app/views/issues/edit.rhtml index 78fc4a7..bd3e6ad 100644 --- a/app/views/issues/edit.rhtml +++ b/app/views/issues/edit.rhtml @@ -19,7 +19,7 @@

<%= f.text_field :subject, :size => 80, :required => true %>

-

<%= f.text_area :description, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :required => true %>

+

<%= f.text_area :description, :required => true, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :class => 'wiki-edit' %>

<% for @custom_value in @custom_values %>

<%= custom_field_tag_with_label @custom_value %>

diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 5acc02b..442c30a 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -104,7 +104,7 @@ end %>

<%= l(:label_add_note) %>

<% form_tag ({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>

- <%= text_area_tag 'notes', '', :cols => 60, :rows => 10 %>

+ <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %>

<%= submit_tag l(:button_add) %> <% end %>
diff --git a/app/views/news/_form.rhtml b/app/views/news/_form.rhtml index 497c071..d5fec27 100644 --- a/app/views/news/_form.rhtml +++ b/app/views/news/_form.rhtml @@ -2,7 +2,7 @@

<%= f.text_field :title, :required => true, :size => 60 %>

<%= f.text_area :summary, :cols => 60, :rows => 2 %>

-

<%= f.text_area :description, :required => true, :cols => 60, :rows => 15 %>

+

<%= f.text_area :description, :required => true, :cols => 60, :rows => 15, :class => 'wiki-edit' %>

<% if Setting.text_formatting == 'textile' %> diff --git a/app/views/projects/add_issue.rhtml b/app/views/projects/add_issue.rhtml index fc07538..f35bb41 100644 --- a/app/views/projects/add_issue.rhtml +++ b/app/views/projects/add_issue.rhtml @@ -19,7 +19,7 @@

<%= f.text_field :subject, :size => 80, :required => true %>

-

<%= f.text_area :description, :cols => 60, :rows => 10, :required => true %>

+

<%= f.text_area :description, :cols => 60, :rows => 10, :required => true, :class => 'wiki-edit' %>

<% for @custom_value in @custom_values %>

<%= custom_field_tag_with_label @custom_value %>

diff --git a/app/views/wiki/edit.rhtml b/app/views/wiki/edit.rhtml index 9caf965..1fc79bd 100644 --- a/app/views/wiki/edit.rhtml +++ b/app/views/wiki/edit.rhtml @@ -11,7 +11,7 @@ <%= link_to l(:label_help), {:controller => 'help', :ctrl => 'wiki', :page => 'syntax' }, :onclick => "window.open('#{ url_for :controller => 'help', :ctrl => 'wiki', :page => 'syntax' }', '', 'resizable=yes, location=no, width=300, height=500, menubar=no, status=no, scrollbars=yes'); return false;" %>
-

<%= f.text_area :text, :cols => 100, :rows => 25, :style => "width:99.5%;" %>

+

<%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit' %>


<%= f.text_field :comment, :size => 120 %>

<%= submit_tag l(:button_save) %> <%= link_to_remote l(:label_preview), diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index f00bb9c..3fe0b1d 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -237,6 +237,7 @@ blockquote {padding-left: 6px; border-left: 2px solid #ccc;} input, select {vertical-align: middle; margin-bottom: 4px;} input.button-small {font-size: 0.8em;} +textarea.wiki-edit { width: 99.5%; } .select-small {font-size: 0.8em;} label {font-weight: bold; font-size: 1em; color: #505050;} fieldset {border:1px solid #c0c0c0; padding: 6px;}