diff options
author | Simon Knox <psimyn@gmail.com> | 2017-03-23 17:19:41 +1100 |
---|---|---|
committer | Simon Knox <psimyn@gmail.com> | 2017-03-23 17:20:55 +1100 |
commit | 69482f1c1b85f0d87c516742411f996515e147f8 (patch) | |
tree | 5ba2f43a8995474225ae53da000b08c1d8929304 /app/views/dashboard/todos/index.html.haml | |
parent | bcbd03257aa52641ee165405b90efd6f53cf8f38 (diff) | |
download | gitlab-ce-69482f1c1b85f0d87c516742411f996515e147f8.tar.gz |
align Mark all as done with other Done buttons on Todos page
Diffstat (limited to 'app/views/dashboard/todos/index.html.haml')
-rw-r--r-- | app/views/dashboard/todos/index.html.haml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/app/views/dashboard/todos/index.html.haml b/app/views/dashboard/todos/index.html.haml index d31ced004a0..e31fa5fbe95 100644 --- a/app/views/dashboard/todos/index.html.haml +++ b/app/views/dashboard/todos/index.html.haml @@ -19,12 +19,13 @@ .nav-controls - if @todos.any?(&:pending?) - = link_to destroy_all_dashboard_todos_path(todos_filter_params), class: 'btn btn-loading js-todos-mark-all', method: :delete, data: { href: destroy_all_dashboard_todos_path(todos_filter_params) } do - Mark all as done - = icon('spinner spin') - = link_to bulk_restore_dashboard_todos_path, class: 'btn btn-loading js-todos-undo-all hidden', method: :patch , data: { href: bulk_restore_dashboard_todos_path(todos_filter_params) } do - Undo mark all as done - = icon('spinner spin') + .append-right-default + = link_to destroy_all_dashboard_todos_path(todos_filter_params), class: 'btn btn-loading js-todos-mark-all', method: :delete, data: { href: destroy_all_dashboard_todos_path(todos_filter_params) } do + Mark all as done + = icon('spinner spin') + = link_to bulk_restore_dashboard_todos_path, class: 'btn btn-loading js-todos-undo-all hidden', method: :patch , data: { href: bulk_restore_dashboard_todos_path(todos_filter_params) } do + Undo mark all as done + = icon('spinner spin') .todos-filters .row-content-block.second-block |