summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/example/styles.css
blob: 08ba493bd756cbbb900ecff2a78eb16a6297dcec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@import url(../itmill5/styles.css);

.v-generated-body {
	/* full height layout does not need scrollable body; 
	avoids excess scrollbars if moving sub-window over the window area */
	overflow:hidden;
}

/******************************************************************************
 * For FormExample.java
 ******************************************************************************/
.v-form legend {
	color: #464f52;
}

.v-orderedlayout-formroot td {
	vertical-align: top;
}

/******************************************************************************
 * For GeneratedColumnExample.java.
 ******************************************************************************/
/* Align columns generated with ValueColumnGenerator to right. */ 
.v-label-column-type-value {
    text-align: right;
}

/* The total value column is displayed in bold. */
.v-label-column-total {
	font-weight: bold;
	text-align: right;
}

/* Display calculated values in blue color. */
.v-label-column-price, .v-label-column-consumption, .v-label-column-dailycost {
    color: blue;
    text-align: right;
}