diff options
Diffstat (limited to 'WebContent/VAADIN/themes/example/styles.css')
-rw-r--r-- | WebContent/VAADIN/themes/example/styles.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/example/styles.css b/WebContent/VAADIN/themes/example/styles.css new file mode 100644 index 0000000000..23ccd058f8 --- /dev/null +++ b/WebContent/VAADIN/themes/example/styles.css @@ -0,0 +1,39 @@ +@import url(../default/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; +} + |