15 lines
623 B
SCSS
15 lines
623 B
SCSS
//** Padding for `<th>`s and `<td>`s.
|
|
$table-cell-padding: 5px 0 5px 10px;
|
|
|
|
//** Default background color used for all tables.
|
|
$table-bg: $body-bg !default;
|
|
//** Background color used for `.table-striped`.
|
|
$table-header-bg: $lightgray !default;
|
|
$table-bg-accent: $lightgray-light !default;
|
|
//** Background color used for `.table-hover`.
|
|
$table-bg-hover: $primary-ultralight !default;
|
|
$table-bg-active: $lightgray-light !default;
|
|
|
|
//** Border color for table and cell borders.
|
|
$table-border-color: $lightgray-dark !default;
|