tablefixed, small| Property Name | Default Value | Description |
|---|---|---|
background-color |
rgba(black, 0.15) |
The background color of the un-filled bar. |
fill-color |
color('brand', 'primary') |
The fill color of the progress bar. |
bar-height |
1.5em |
The height of the progress bar. |
bar-radius |
0.25em |
The border-radius of the progress bar. |
<table class="table">
<thead>
<tr>
<th>Property Name</th>
<th>Default Value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>background-color</code></td>
<td><code class="value">rgba(black, 0.15)</code></td>
<td>The background color of the un-filled bar.</td>
</tr>
...
</tbody>
</table>
| Property Name | Default Value | Description |
|---|---|---|
background-color |
rgba(black, 0.15) |
The background color of the un-filled bar. |
fill-color |
color('brand', 'primary') |
The fill color of the progress bar. |
bar-height |
1.5em |
The height of the progress bar. |
bar-radius |
0.25em |
The border-radius of the progress bar. |
<table class="table-fixed">
...
</table>
| Property Name | Default Value | Description |
|---|---|---|
background-color |
rgba(black, 0.15) |
The background color of the un-filled bar. |
fill-color |
color('brand', 'primary') |
The fill color of the progress bar. |
bar-height |
1.5em |
The height of the progress bar. |
bar-radius |
0.25em |
The border-radius of the progress bar. |
<table class="table-small">
...
</table>
The tables can be customized using the following options:
| Property Name | Default Value | Description |
|---|---|---|
weight |
lighter |
The font weight of tables. |
cell-padding |
0.6em |
The padding of table cells. |
small-font-size |
0.85em |
The font size of tables when using the small modifier. |
To change one of the above values, pass your new value(s) to the tables() mixin in your theme file (e.g. assets/themes/Kayzen/_kayzen.scss).
@include tables((
'weight' : bold,
'cell-padding' : 1em
));