diff --git a/app/views/todos/_edit_mobile.rhtml b/app/views/todos/_edit_mobile.rhtml index 0c39945d..712ecaa0 100644 --- a/app/views/todos/_edit_mobile.rhtml +++ b/app/views/todos/_edit_mobile.rhtml @@ -8,9 +8,9 @@ if parent_container_type == 'show_mobile' -%>

 <%= check_box_tag("done", 1, @todo && @todo.completed?, "tabindex" => 1) %>

<% end -%>

-<%= text_field( "todo", "description", "tabindex" => 2, "maxlength" => 100) %> +<%= text_field( "todo", "description", "tabindex" => 2, "maxlength" => 100, "size" => 50) %>

-<%= text_area( "todo", "notes", "cols" => 30, "rows" => 2, "tabindex" => 3) %> +<%= text_area( "todo", "notes", "cols" => 40, "rows" => 3, "tabindex" => 3) %>

<%= unless @mobile_from_context collection_select( "todo", "context_id", @contexts, "id", "name", {}, {"tabindex" => 4} ) @@ -31,7 +31,7 @@ else {"id" => :todo_project_id, :tabindex => 5} ) end %>

-<%= text_field_tag "tag_list", @tag_list_text, :size => 30, :tabindex => 6 %> +<%= text_field_tag "tag_list", @tag_list_text, :size => 50, :tabindex => 6 %>

<%= date_select("todo", "due", {:order => [:day, :month, :year], :start_year => this_year, :include_blank => '--'}, :tabindex => 7) %>