Skip to content

Commit

Permalink
some style changes...made the gantt blocks quite a bit larger
Browse files Browse the repository at this point in the history
  • Loading branch information
thegrubbsian committed Jun 17, 2010
1 parent 47bd86b commit 575419a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion example/data.js
Expand Up @@ -13,7 +13,7 @@ var ganttData = [
]
},
{
id: 3, name: "Feature 3", series: [
id: 3, name: "Feature 3 - Here is a really long name to blow up the CSS", series: [
{ name: "Planned", start: new Date(2010,00,11), end: new Date(2010,01,03) },
{ name: "Actual", start: new Date(2010,00,15), end: new Date(2010,01,03), color: "#f0f0f0" }
]
Expand Down
12 changes: 6 additions & 6 deletions jquery.ganttView.css
Expand Up @@ -65,14 +65,14 @@ div.ganttview-vtheader-item-name {
width: 100px;
padding-left: 5px;
border-top: 1px solid #d0d0d0;
line-height: 21px;
line-height: 16px;
}

div.ganttview-vtheader-series-name {
width: 130px;
height: 21px;
height: 31px;
border-top: 1px solid #d0d0d0;
line-height: 21px;
line-height: 16px;
padding-left: 5px;
}

Expand All @@ -89,7 +89,7 @@ div.ganttview-slide-container {

div.ganttview-grid-row-cell {
width: 20px;
height: 21px;
height: 31px;
border-right: 1px solid #f0f0f0;
border-top: 1px solid #f0f0f0;
}
Expand All @@ -106,13 +106,13 @@ div.ganttview-blocks {
}

div.ganttview-block-container {
height: 18px;
height: 28px;
padding-top: 4px;
}

div.ganttview-block {
position: relative;
height: 15px;
height: 25px;
background-color: #E5ECF9;
border: 1px solid #c0c0c0;
border-radius: 3px;
Expand Down
2 changes: 1 addition & 1 deletion jquery.ganttView.js
Expand Up @@ -23,7 +23,7 @@ slideWidth: number
var defaults = {
showWeekends: true,
cellWidth: 21,
cellHeight: 21,
cellHeight: 31,
slideWidth: 400,
vHeaderWidth: 100
};
Expand Down

0 comments on commit 575419a

Please sign in to comment.