Updated mobile_add_action.feature with new navigation text
Updated modile_edit_a_todo.feature to not look for removed 'done' checkbox in
the edit form, but to use the previously created "mark complete" button.
Added completed_container to mobile_actions so the test could find the
completed todo that is no longer not visible
removing the done checkout
(with new intermediate mobile todo view with done button, this is
needed)
rearranging fields to put the most important fields first
the span with class m_t and m_t_d and its styling are no longer needed
mobile todo lists need to be wrapped in ul element. fixing up missing or unclosed
This adds some margin to the top of the checkboxes in order to align the
star, checkbox, and pencil icons along the same baseline.
My eyes no longer hurt from the differences in alignment. :)
The badge in the header are now rounded.
The corners of the groups in the project page are also now rounded.
The rounding is done with CSS3, with specific markup for Firefox and
Webkit-based browsers. IE versions less than 9 are not supported.
When showing the project edit form, we disable the ability to edit the
project name in place. When the project edit form is saved or cancelled,
then we reenable the editing of the project name in place.
Fixes#1205
If the project name field is being edited and it loses focus, then we
remove the edit box and the buttons. This reduces the possibility to be
able to edit the project name from more than one place as in #1205.
We're using bundler now so update the piece about installing the
dependencies.
Also do some reformatting at the 80 column boundary in order to avoid
having really long lines that don't look quite so nice in a smaller
editor window.
Add information about running the Test::Unit tests.
Remove the reference to the forum since it's not accepting new
registrations anymore and users are advised to use the mailing list
elsewhere.
Immediately after hiding a project, if a user marks a todo as done, they
would erroneously see a "There are no incomplete actions in this
project" banner under the open actions section.
This commit uses the active_or_hidden scope for the project todos in
order to fix this, since the todos are active but hidden due to the
project.
Fixes#1202