Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
background-repeat: repeat;
background-position: 24px 24px;
}
.fn-gantt .day {
.fn-gantt .day, .fn-gantt .date {
overflow: visible;
width: 24px;
line-height: 24px;
Expand Down
6 changes: 3 additions & 3 deletions js/jquery.fn.gantt.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@

var day_class2 = (today - day === 0) ? ' today' : (holidays.indexOf(getTime) > -1) ? "holiday" : dowClass[getDay];

dayArr.push('<div class="row day ' + day_class2 + '" '
dayArr.push('<div class="row date ' + day_class2 + '" '
+ ' style="width: ' + tools.getCellSize() * hoursInDay + 'px;"> '
+ ' <div class="fn-label">' + day.getDate() + '</div></div>');
dowArr.push('<div class="row day ' + day_class2 + '" '
Expand Down Expand Up @@ -466,7 +466,7 @@
day_class = "holiday";
}

dayArr.push('<div class="row day ' + day_class + '" '
dayArr.push('<div class="row date ' + day_class + '" '
+ ' style="width: ' + tools.getCellSize() * hoursInDay + 'px;"> '
+ ' <div class="fn-label">' + day.getDate() + '</div></div>');

Expand Down Expand Up @@ -666,7 +666,7 @@
day_class = "holiday";
}

dayArr.push('<div class="row day ' + day_class + '" '
dayArr.push('<div class="row date ' + day_class + '" '
+ ' id="dh-' + tools.genId(rday.getTime()) + '" offset="' + i * tools.getCellSize() + '" repdate="' + rday.genRepDate() + '> '
+ ' <div class="fn-label">' + rday.getDate() + '</div></div>');
dowArr.push('<div class="row day ' + day_class + '" '
Expand Down
Loading