Merge pull request #1900 from TracksApp/enlarge-touch-points-for-mobile-ui

Increase the usability of the new todo mobile view
This commit is contained in:
Matt Rogers 2015-08-07 19:54:55 -04:00
commit d5f6480f58
4 changed files with 26 additions and 10 deletions

View file

@ -235,7 +235,13 @@ table.c {
}
input#todo_description, input#tag_list, textarea#todo_notes, select#todo_project_id, select#todo_context_id {
width: 95%;
width: 100%;
padding: 8px 8px;
box-sizing: border-box;
}
select {
font-size: 1.1em;
}
.next-prev-project {
@ -289,3 +295,13 @@ div.note_wrapper p {
text-align: right;
}
.btn {
padding: 8px;
border-radius: 5px;
background-image: none;
display: inline-block;
white-space: none;
border: 1px solid transparent;
background-color: #999999;
color: #ffffff;
}