minor
This commit is contained in:
parent
2a382ed437
commit
9aa1b14aa9
3 changed files with 9 additions and 2 deletions
|
|
@ -89,7 +89,7 @@ function LayoutRow(layout, parent) {
|
|||
|
||||
this.header = $a(this.main_body, 'div','',{padding:(layout.with_border ? '0px 8px' : '0px')});
|
||||
this.body = $a(this.main_body,'div');
|
||||
this.table = $a(this.body, 'table', '', {width:'100%', borderCollapse: 'collapse'});
|
||||
this.table = $a(this.body, 'table', '', {width:'100%', borderCollapse: 'collapse', tableLayout:'fixed'});
|
||||
this.row = this.table.insertRow(0);
|
||||
|
||||
this.mycells = [];
|
||||
|
|
|
|||
|
|
@ -226,6 +226,13 @@
|
|||
color: #714715 !important;
|
||||
}
|
||||
|
||||
.fn-gantt .ganttGray {
|
||||
background-color: #eee;
|
||||
}
|
||||
.fn-gantt .ganttGray .fn-label {
|
||||
color: #888 !important;
|
||||
}
|
||||
|
||||
|
||||
/* === BOTTOM NAVIGATION === */
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ def add(args=None):
|
|||
d.description = args['description']
|
||||
d.priority = args.get('priority', 'Medium')
|
||||
d.date = args.get('date', nowdate())
|
||||
d.assigned_by = webnotes.user.name
|
||||
d.assigned_by = args.get('assigned_by', webnotes.user.name)
|
||||
d.save(1)
|
||||
|
||||
# notify
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue