]> source.dussan.org Git - redmine.git/commitdiff
width of all wiki content textareas set to 99.5%
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 11 Mar 2007 14:22:53 +0000 (14:22 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 11 Mar 2007 14:22:53 +0000 (14:22 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@329 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/documents/_form.rhtml
app/views/issues/change_status.rhtml
app/views/issues/edit.rhtml
app/views/issues/show.rhtml
app/views/news/_form.rhtml
app/views/projects/add_issue.rhtml
app/views/wiki/edit.rhtml
public/stylesheets/application.css

index b075b4657c440666f474539ba7c6f946be2eadc0..40bbdc66a1760578455e14cb0040840276ff00ef 100644 (file)
@@ -10,7 +10,7 @@
 <%= text_field 'document', 'title', :size => 60 %></p>
 
 <p><label for="document_description"><%=l(:field_description)%></label>
-<%= text_area 'document', 'description', :cols => 60, :rows => 15 %></p>
+<%= text_area 'document', 'description', :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
 <!--[eoform:document]-->
 </div>
 
index 96722569402dd7e37dd8be9b1a01d7eae04c5655..377e0da2ea93b0b18e7d5b32c0c4868d65be2e35 100644 (file)
@@ -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>
 \r
index 78fc4a7a8606b366dcd0c7138ae096b2b80882cb..bd3e6ad4fb4beaf055439e2a0ac9454792063f86 100644 (file)
@@ -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>
index 5acc02bcb1323f2c9f1dc9a0dcddef6ace0e9af9..442c30abe5dd4bfce89c96179837924017e1a33b 100644 (file)
@@ -104,7 +104,7 @@ end %>
   <h3><%= l(:label_add_note) %></h3>\r
   <% form_tag ({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>\r
   <p><label for="notes"><%=l(:field_notes)%></label>\r
-    <%= text_area_tag 'notes', '', :cols => 60, :rows => 10  %></p>\r
+    <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit'  %></p>\r
   <%= submit_tag l(:button_add) %>\r
   <% end %>  \r
   </div>\r
index 497c071c1c62c6f35e93960e22ade829d3bf2532..d5fec279a9e70cc0c51a08a532b202b3b54b5115 100644 (file)
@@ -2,7 +2,7 @@
 <div class="box">
 <p><%= f.text_field :title, :required => true, :size => 60 %></p>
 <p><%= f.text_area :summary, :cols => 60, :rows => 2 %></p>
-<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 15 %></p>
+<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
 </div>
 
 <% if Setting.text_formatting == 'textile' %>
index fc075384cadd5b17741493694f94f4837deee372..f35bb415998f88747b71c621b873f1eb33f421c4 100644 (file)
@@ -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, :required => true %></p>
+<p><%= f.text_area :description, :cols => 60, :rows => 10, :required => true, :class => 'wiki-edit' %></p>
 \r
 <% for @custom_value in @custom_values %>
        <p><%= custom_field_tag_with_label @custom_value %></p>
index 9caf9650900bec27aa3eebd980b5707546a07e69..1fc79bdc4a4cb0dd445ba8038c631efe52865cbd 100644 (file)
@@ -11,7 +11,7 @@
 <%= link_to l(:label_help), {:controller => 'help', :ctrl => 'wiki', :page => 'syntax' },\r
                             :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;" %>\r
 </div>\r
-<p><%= f.text_area :text, :cols => 100, :rows => 25, :style => "width:99.5%;" %></p>\r
+<p><%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit' %></p>\r
 <p><label><%= l(:field_comment) %></label><br /><%= f.text_field :comment, :size => 120 %></p>\r
 <p><%= submit_tag l(:button_save) %>\r
    <%= link_to_remote l(:label_preview), \r
index f00bb9c7c2491f2675a9a2c0a77989c162afa153..3fe0b1d682409579b233b439af40f7246f75334c 100644 (file)
@@ -237,6 +237,7 @@ blockquote {padding-left: 6px; border-left: 2px solid #ccc;}
 input, select {vertical-align: middle; margin-bottom: 4px;}\r
 \r
 input.button-small {font-size: 0.8em;}\r
+textarea.wiki-edit { width: 99.5%; }\r
 .select-small {font-size: 0.8em;}\r
 label {font-weight: bold; font-size: 1em; color: #505050;}\r
 fieldset {border:1px solid #c0c0c0; padding: 6px;}\r