todo page background bugfix

This commit is contained in:
Rushabh Mehta 2012-08-07 16:36:10 +05:30
parent df196c12a9
commit c2ef064ebb
3 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@
padding-right: 15px;
}
.layout-main {
.todo-layout {
background-color: #FFFDC9;
min-height: 300px;
}

View File

@ -1,6 +1,6 @@
<div class="layout-wrapper layout-wrapper-background">
<div class="appframe-area"></div>
<div class="layout-main">
<div class="layout-main todo-layout">
<div>
<div id="todo-list">
<h4>My List</h4><br>

View File

@ -144,10 +144,10 @@ erpnext.todo.make_dialog = function(det) {
width: 480,
title: 'To Do',
fields: [
{fieldtype:'Date', fieldname:'date', label:'Event Date', reqd:1},
{fieldtype:'Text', fieldname:'description', label:'Description',
reqd:1, description:'Use <a href="#markdown-reference">markdown</a> to \
format content'},
{fieldtype:'Date', fieldname:'date', label:'Event Date', reqd:1},
{fieldtype:'Check', fieldname:'checked', label:'Completed'},
{fieldtype:'Select', fieldname:'priority', label:'Priority', reqd:1, 'options':['Medium','High','Low'].join('\n')},
{fieldtype:'Button', fieldname:'save', label:'Save'}