diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-05-13 17:51:55 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-05-13 17:51:55 +0000 |
commit | 75d25b7e61c16b732e340073af6d928ced3f8ae3 (patch) | |
tree | 28f2cc02d3e92710239ddc4c9d9b9c26596af392 | |
parent | 77e87eb0bad7afb83ba569ef42d9b0dda9aa44e9 (diff) | |
download | redmine-75d25b7e61c16b732e340073af6d928ced3f8ae3.tar.gz redmine-75d25b7e61c16b732e340073af6d928ced3f8ae3.zip |
Fixed: Update issue form: comment field from log time end out of screen (#1227).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1427 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/_edit.rhtml | 2 | ||||
-rw-r--r-- | public/stylesheets/application.css | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/app/views/issues/_edit.rhtml b/app/views/issues/_edit.rhtml index 2e00ab520..49f198a63 100644 --- a/app/views/issues/_edit.rhtml +++ b/app/views/issues/_edit.rhtml @@ -21,9 +21,9 @@ <p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p> </div> <div class="splitcontentright"> - <p><%= time_entry.text_field :comments, :size => 40 %></p> <p><%= time_entry.select :activity_id, (@activities.collect {|p| [p.name, p.id]}) %></p> </div> + <p><%= time_entry.text_field :comments, :size => 60 %></p> <% end %> </fieldset> <% end %> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 18e1de621..8e4bf995c 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -241,6 +241,8 @@ text-align: left; width: 200px; } +input#time_entry_comments { width: 90%;} + #preview fieldset {margin-top: 1em; background: url(../images/draft.png)} .tabular.settings p{ padding-left: 300px; } |