From: Jean-Philippe Lang Date: Tue, 6 Dec 2011 20:15:22 +0000 (+0000) Subject: Removed the "more" link to edit additional properties of an issue (#7603). X-Git-Tag: 1.4.0~1161 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9333853f23fc6a34191cbb5cc0db08bc06050eb1;p=redmine.git Removed the "more" link to edit additional properties of an issue (#7603). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8102 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/issues/_edit.html.erb b/app/views/issues/_edit.html.erb index 9c99b234d..022d159f1 100644 --- a/app/views/issues/_edit.html.erb +++ b/app/views/issues/_edit.html.erb @@ -2,11 +2,7 @@ <%= error_messages_for 'issue', 'time_entry' %>
<% if @edit_allowed || !@allowed_statuses.empty? %> -
<%= l(:label_change_properties) %> - <% if !@issue.new_record? && !@issue.errors.any? && @edit_allowed %> - (<%= link_to l(:label_more), {}, :onclick => 'Effect.toggle("issue_descr_fields", "appear", {duration:0.3}); return false;' %>) - <% end %> - +
<%= l(:label_change_properties) %> <%= render :partial => (@edit_allowed ? 'form' : 'form_update'), :locals => {:f => f} %>
<% end %> diff --git a/app/views/issues/_form.html.erb b/app/views/issues/_form.html.erb index 57258fece..8b5c014a5 100644 --- a/app/views/issues/_form.html.erb +++ b/app/views/issues/_form.html.erb @@ -1,6 +1,5 @@ <%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %> -
> <% if @issue.safe_attribute_names.include?('is_private') %>

@@ -12,12 +11,19 @@ :with => "Form.serialize('issue-form')" %>

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

-

<%= f.text_area :description, +

+ + <%= link_to_function image_tag('edit.png'), + 'Element.hide(this); Effect.toggle("issue_description_and_toolbar", "appear", {duration:0.3})' unless @issue.new_record? %> + <% content_tag 'span', :id => "issue_description_and_toolbar", :style => (@issue.new_record? ? nil : 'display:none') do %> + <%= f.text_area :description, :cols => 60, :rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min), :accesskey => accesskey(:edit), - :class => 'wiki-edit' %>

-
+ :class => 'wiki-edit', + :no_label => true %> + <% end %> +

<%= render :partial => 'issues/attributes' %> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 7c42e6f20..94bac1af0 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -405,7 +405,7 @@ p.pagination {margin-top:8px;} margin: 0; padding: 3px 0 3px 0; padding-left: 180px; /* width of left column containing the label elements */ -height: 1%; +min-height: 1.8em; clear:left; }