40 lines
778 B
CSS
40 lines
778 B
CSS
#stormgantt {
|
|
margin-top: 3em;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
border-right: 1px solid #cecece;
|
|
background-color: #cecece;
|
|
}
|
|
/* Highlight weekends */
|
|
.weekend {
|
|
background: #f4f7f4;
|
|
}
|
|
.gantt_selected .weekend {
|
|
background: #f7eb91;
|
|
}
|
|
/* Task description */
|
|
.gantt_grid_data .gantt_cell:first-child {
|
|
overflow: hidden;
|
|
word-wrap: normal;
|
|
}
|
|
/* Task content */
|
|
.gantt_task_content {
|
|
text-align: left;
|
|
padding-left: 1em;
|
|
}
|
|
/* Milestones */
|
|
.gantt_task_line.gantt_milestone .gantt_task_content {
|
|
height: 12px;
|
|
width: 12px;
|
|
padding: 0;
|
|
}
|
|
.gantt_side_content.gantt_right {
|
|
left: 100%;
|
|
padding-left: 0;
|
|
margin-left: -8px;
|
|
font-weight: bold;
|
|
}
|
|
.gantt_task_normal > .gantt_side_content.gantt_right {
|
|
margin-left: 5px;
|
|
font-weight: normal;
|
|
}
|