mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 00:00:12 +01:00
Merge pull request #2010 from dnrce/fix-recurring-todo-dialogs
Fix recurring todo dialogs
This commit is contained in:
commit
ce453e7e1a
2 changed files with 8 additions and 1 deletions
|
|
@ -812,6 +812,7 @@ var RecurringTodosPage = {
|
||||||
autoOpen: false,
|
autoOpen: false,
|
||||||
height: 690,
|
height: 690,
|
||||||
width: 750,
|
width: 750,
|
||||||
|
position: { my: 'top', at: 'bottom+10', of: 'nav', collision: 'none' },
|
||||||
modal: true,
|
modal: true,
|
||||||
buttons: {
|
buttons: {
|
||||||
create: {
|
create: {
|
||||||
|
|
@ -845,6 +846,7 @@ var RecurringTodosPage = {
|
||||||
autoOpen: false,
|
autoOpen: false,
|
||||||
height: 690,
|
height: 690,
|
||||||
width: 750,
|
width: 750,
|
||||||
|
position: { my: 'top', at: 'bottom+10', of: 'nav', collision: 'none' },
|
||||||
modal: true,
|
modal: true,
|
||||||
buttons: {
|
buttons: {
|
||||||
"Update": {
|
"Update": {
|
||||||
|
|
@ -864,7 +866,8 @@ var RecurringTodosPage = {
|
||||||
RecurringTodosPage.hide_all_recurring();
|
RecurringTodosPage.hide_all_recurring();
|
||||||
RecurringTodosPage.reset_radio();
|
RecurringTodosPage.reset_radio();
|
||||||
$('#recurring_daily').show();
|
$('#recurring_daily').show();
|
||||||
}
|
},
|
||||||
|
appendTo: "#content"
|
||||||
});
|
});
|
||||||
|
|
||||||
/* change recurring period radio input on edit form */
|
/* change recurring period radio input on edit form */
|
||||||
|
|
|
||||||
|
|
@ -707,6 +707,10 @@ li {
|
||||||
position:relative;
|
position:relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#edit-recurring-todo {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
/* Right align labels in forms */
|
/* Right align labels in forms */
|
||||||
.label {
|
.label {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue