]> source.dussan.org Git - redmine.git/commitdiff
Slight visual changes on the issue form.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 17 Jan 2009 07:53:32 +0000 (07:53 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 17 Jan 2009 07:53:32 +0000 (07:53 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2269 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_form.rhtml
app/views/issues/_form_update.rhtml
public/stylesheets/application.css

index 0ca12554dc670063ab4044f615efd80eb609d0a2..ff9b3768563be0f46cbbdbf4b1067dabd2806d84 100644 (file)
@@ -15,6 +15,7 @@
                    :class => 'wiki-edit' %></p>
 </div>
 
+<div class="attributes">
 <div class="splitcontentleft">
 <% if @issue.new_record? || @allowed_statuses.any? %>
 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
@@ -43,6 +44,7 @@
 
 <div style="clear:both;"> </div>
 <%= render :partial => 'form_custom_fields' %>
+</div>
 
 <% if @issue.new_record? %>
 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
index 25e81a7fdd6f7bb95a97673c2cdb51d9f4590743..3f17a03001e64e157b818c1d9caff774a45791c9 100644 (file)
@@ -1,3 +1,4 @@
+<div class="attributes">
 <div class="splitcontentleft">
 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
@@ -8,3 +9,4 @@
                           (@project.versions.sort.collect {|v| [v.name, v.id]}),
                           { :include_blank => true })) unless @project.versions.empty? %>
 </div>
+</div>
index f0ba7929de9c6b50a4d63174cad4f5a4d60a565a..a4251af91ccc7e7c86e9c0eeb489574322e5622b 100644 (file)
@@ -231,6 +231,10 @@ table#time-report tbody tr.last-level { font-style: normal; color: #555; }
 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
 table#time-report .hours-dec { font-size: 0.9em; }
 
+form#issue-form .attributes { margin-bottom: 8px; }
+form#issue-form .attributes p { padding-top: 1px; padding-bottom: 2px; }
+form#issue-form .attributes select { min-width: 30%; }
+
 ul.properties {padding:0; font-size: 0.9em; color: #777;}
 ul.properties li {list-style-type:none;}
 ul.properties li span {font-style:italic;}