Merge pull request #2010 from dnrce/fix-recurring-todo-dialogs

Fix recurring todo dialogs
This commit is contained in:
Matt Rogers 2016-05-20 22:49:06 -05:00
commit ce453e7e1a
2 changed files with 8 additions and 1 deletions

View file

@ -812,6 +812,7 @@ var RecurringTodosPage = {
autoOpen: false,
height: 690,
width: 750,
position: { my: 'top', at: 'bottom+10', of: 'nav', collision: 'none' },
modal: true,
buttons: {
create: {
@ -845,6 +846,7 @@ var RecurringTodosPage = {
autoOpen: false,
height: 690,
width: 750,
position: { my: 'top', at: 'bottom+10', of: 'nav', collision: 'none' },
modal: true,
buttons: {
"Update": {
@ -864,7 +866,8 @@ var RecurringTodosPage = {
RecurringTodosPage.hide_all_recurring();
RecurringTodosPage.reset_radio();
$('#recurring_daily').show();
}
},
appendTo: "#content"
});
/* change recurring period radio input on edit form */

View file

@ -707,6 +707,10 @@ li {
position:relative;
}
#edit-recurring-todo {
background: #fff;
}
/* Right align labels in forms */
.label {
text-align: right;