FlexGanttFX Developer Manual : timeline.css

/*
 * timeline.css file of FlexGanttFX
 * 
 * Copyright 2014 Dirk Lemmermann Software & Consulting
 */

/*
 * timeline-first/middle/last are styles that are applied depending on the 
 * position of the Gantt chart in a multi Gantt chart context, e.g. the
 * DualGanttChartContainer or the MultipleGanttChartContainer.
 */
.timeline {
	-fx-background-color: -fx-body-color;
	/*
	 * The pref height of the timeline has to match the pref height
	 * of the table column headers, so that they 
	 */
	-fx-pref-height: 60px;
}

.timeline-first {
}
.timeline-middle,
.timeline-last {
	/*
	 * The pref height of the timeline is smaller if the timeline 
	 * is used for the second, third, ... chart in a multi Gantt chart
	 * context. 
	 */
	-fx-pref-height: 24px;
}

/*
 * The lasso used for selecting time intervals.
 */
.timeline-lasso {
	/* semi-transparent rectangle, blue by default (modena.css) */
	-fx-opacity: 60%;
	-fx-background-color: -fx-accent;
}