2017-11-17 12:32:07 +01:00
|
|
|
/*
|
|
|
|
jQuery.ganttView v.0.8.0
|
|
|
|
Copyright (c) 2010 JC Grubbs - jc.grubbs@devmynd.com
|
|
|
|
MIT License Applies
|
|
|
|
*/
|
|
|
|
|
|
|
|
div.ganttview-hzheader-month,
|
|
|
|
div.ganttview-hzheader-day,
|
|
|
|
div.ganttview-vtheader,
|
|
|
|
div.ganttview-vtheader-item-name,
|
|
|
|
div.ganttview-vtheader-series,
|
|
|
|
div.ganttview-grid,
|
|
|
|
div.ganttview-grid-row-cell {
|
2017-12-01 09:52:43 +01:00
|
|
|
float: left;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-hzheader-month,
|
|
|
|
div.ganttview-hzheader-day {
|
2017-12-01 09:52:43 +01:00
|
|
|
text-align: center;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-grid-row-cell.last,
|
|
|
|
div.ganttview-hzheader-day.last,
|
|
|
|
div.ganttview-hzheader-month.last {
|
2017-12-01 09:52:43 +01:00
|
|
|
border-right: none;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview {
|
2017-12-01 09:52:43 +01:00
|
|
|
border: 1px solid #999;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Horizontal Header */
|
|
|
|
|
|
|
|
div.ganttview-hzheader-month {
|
2017-12-01 09:52:43 +01:00
|
|
|
width: 60px;
|
|
|
|
height: 20px;
|
|
|
|
border-right: 1px solid #d0d0d0;
|
|
|
|
line-height: 20px;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-hzheader-day {
|
2017-12-01 09:52:43 +01:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-right: 1px solid #f0f0f0;
|
|
|
|
border-top: 1px solid #d0d0d0;
|
|
|
|
line-height: 20px;
|
|
|
|
color: #777;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Vertical Header */
|
|
|
|
|
|
|
|
div.ganttview-vtheader {
|
2017-12-01 09:52:43 +01:00
|
|
|
margin-top: 41px;
|
|
|
|
width: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #fff;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-vtheader-item {
|
2017-12-01 09:52:43 +01:00
|
|
|
overflow: hidden;
|
|
|
|
color: #666;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-vtheader-item-name {
|
2017-12-01 09:52:43 +01:00
|
|
|
width: 100px;
|
|
|
|
padding-left: 5px;
|
|
|
|
border-top: 1px solid #d0d0d0;
|
|
|
|
line-height: 16px;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-vtheader-series-name {
|
2017-12-01 09:52:43 +01:00
|
|
|
width: 130px;
|
|
|
|
height: 31px;
|
|
|
|
border-top: 1px solid #d0d0d0;
|
|
|
|
line-height: 16px;
|
|
|
|
padding-left: 5px;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Slider */
|
|
|
|
|
|
|
|
div.ganttview-slide-container {
|
2017-12-01 09:52:43 +01:00
|
|
|
overflow: auto;
|
|
|
|
border-left: 1px solid #999;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Grid */
|
|
|
|
|
|
|
|
div.ganttview-grid-row-cell {
|
2017-12-01 09:52:43 +01:00
|
|
|
width: 20px;
|
|
|
|
height: 31px;
|
|
|
|
border-right: 1px solid #f0f0f0;
|
|
|
|
border-top: 1px solid #f0f0f0;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-grid-row-cell.ganttview-weekend {
|
2017-12-01 09:52:43 +01:00
|
|
|
background-color: #fafafa;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-grid-row-cell.ganttview-today {
|
2017-12-01 09:52:43 +01:00
|
|
|
background-color: #F7F9FF !important;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Blocks */
|
|
|
|
|
|
|
|
div.ganttview-blocks {
|
2017-12-01 09:52:43 +01:00
|
|
|
margin-top: 40px;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-block-container {
|
2017-12-01 09:52:43 +01:00
|
|
|
height: 31px;
|
|
|
|
padding-top: 4px;
|
|
|
|
text-align: left;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-block {
|
2017-12-01 09:52:43 +01:00
|
|
|
position: relative;
|
|
|
|
height: 25px;
|
|
|
|
background-color: #E5ECF9;
|
|
|
|
border: 1px solid #c0c0c0;
|
|
|
|
border-radius: 3px;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
-webkit-border-radius: 3px;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ganttview-block-text {
|
2017-12-01 09:52:43 +01:00
|
|
|
position: absolute;
|
|
|
|
height: 12px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: #999;
|
|
|
|
padding: 2px 3px;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Adjustments for jQuery UI Styling */
|
|
|
|
|
|
|
|
div.ganttview-block div.ui-resizable-handle.ui-resizable-s {
|
2017-12-01 09:52:43 +01:00
|
|
|
bottom: -0;
|
2017-11-17 12:32:07 +01:00
|
|
|
}
|