diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2016-05-15 23:46:50 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2016-05-15 23:46:50 -0600 |
| commit | f44893da71ee327f344e35496cc065529cefdca8 (patch) | |
| tree | ab7bc61ca56aa60f9b6ae4c9f38cfe4eb03cc216 /docs | |
| parent | cff50ab8cddde20a2f4f60160b1903402c6f0d44 (diff) | |
add missing theme keys for table in theming guide
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/theming-guide.adoc | 80 |
1 files changed, 77 insertions, 3 deletions
diff --git a/docs/theming-guide.adoc b/docs/theming-guide.adoc index 75347131..80ef3d0e 100644 --- a/docs/theming-guide.adoc +++ b/docs/theming-guide.adoc @@ -1828,6 +1828,22 @@ The keys in this category control the arrangement and style of tables and table |table: border_width: 0.5 +|font_color +|<<colors,Color>> + +(default: $base_font_color) +|table: + font_color: #333333 + +|font_family +|<<fonts,Font family name>> +|table: + font_family: Helvetica + +|font_size +|<<values,Number>> +|table: + font_size: 9.5 + |grid_color |<<colors,Color>> + (default: $table_border_color) @@ -1836,18 +1852,40 @@ The keys in this category control the arrangement and style of tables and table |grid_width |<<values,Number>> + -(default: $table_grid_color) +(default: $table_border_width) |table: grid_width: 0.5 3+|*Key Prefix:* table_head |background_color -|<<colors,Color>> +|<<colors,Color>> + +(default: $table_background_color) |table: head: background_color: #f0f0f0 +|font_color +|<<colors,Color>> + +(default: $table_font_color) +|table: + head: + font_color: #333333 + +|font_family +|<<fonts,Font family name>> + +(default: $table_font_family) +|table: + head: + font_family: Noto Serif + +|font_size +|<<values,Number>> + +(default: $table_font_size) +|table: + head: + font_size: 10 + |font_style |normal {vbar} italic {vbar} bold {vbar} bold_italic + (default: bold) @@ -1855,14 +1893,50 @@ The keys in this category control the arrangement and style of tables and table head: font_style: normal +|text_transform +|none {vbar} uppercase {vbar} lowercase + +(default: none) +|table: + head: + text_transform: uppercase + 3+|*Key Prefix:* table_foot |background_color -|<<colors,Color>> +|<<colors,Color>> + +(default: $table_background_color) |table: foot: background_color: #f0f0f0 +|font_color +|<<colors,Color>> + +(default: $table_font_color) +|table: + foot: + font_color: #333333 + +|font_family +|<<fonts,Font family name>> + +(default: $table_font_family) +|table: + foot: + font_family: Noto Serif + +|font_size +|<<values,Number>> + +(default: $table_font_size) +|table: + foot: + font_size: 10 + +|font_style +|normal {vbar} italic {vbar} bold {vbar} bold_italic + +(default: normal) +|table: + foot: + font_style: italic + 3+|*Key Prefix:* table_odd_row |background_color |
