diff --git a/app/assets/stylesheets/mobile.css.scss b/app/assets/stylesheets/mobile.css.scss index 4cc1b6b5..372e7f71 100644 --- a/app/assets/stylesheets/mobile.css.scss +++ b/app/assets/stylesheets/mobile.css.scss @@ -289,3 +289,14 @@ div.note_wrapper p { text-align: right; } +.btn { + padding: 8px 8px; + border-radius: 5px; + background-image: none; + display: inline-block; + white-space: none; + border: 1px solid transparent; + background-color: #999999; + color: white; +} + diff --git a/app/views/todos/edit.m.erb b/app/views/todos/edit.m.erb index 8f8d98a7..d1a35675 100644 --- a/app/views/todos/edit.m.erb +++ b/app/views/todos/edit.m.erb @@ -1,5 +1,5 @@ <%= form_tag todo_path(@todo, :format => 'm'), :name => 'mobileEdit', :method => :put do %> <%= render :partial => 'edit_form', :locals => { :parent_container_type => "show_mobile" } %> -
+ <% end -%> <%= link_to t('common.cancel'), @return_path %> diff --git a/app/views/todos/new.m.erb b/app/views/todos/new.m.erb index 26b1a911..5284e69c 100644 --- a/app/views/todos/new.m.erb +++ b/app/views/todos/new.m.erb @@ -1,6 +1,6 @@ <%= form_tag todos_path(:format => 'm'), :method => :post do %> <%= render :partial => 'edit_form' %> - + <% end -%> <%= link_to t('common.back'), @return_path %> diff --git a/app/views/todos/show.m.erb b/app/views/todos/show.m.erb index 3a29573d..9159b0b3 100644 --- a/app/views/todos/show.m.erb +++ b/app/views/todos/show.m.erb @@ -4,42 +4,42 @@