diff options
| author | ysds <[email protected]> | 2018-02-20 07:42:54 +0900 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2018-02-19 14:42:54 -0800 |
| commit | 33f3ba33c208937a2aec30accddc6b7384442c6b (patch) | |
| tree | ad7e0107cd0b390efa0f62c2242e54be7f7c51cb | |
| parent | 24a5376a1408a52cce052ccbf0283824eb444c07 (diff) | |
| download | bootstrap-33f3ba33c208937a2aec30accddc6b7384442c6b.tar.xz bootstrap-33f3ba33c208937a2aec30accddc6b7384442c6b.zip | |
Add color variable for caption (#25657)
| -rw-r--r-- | scss/_reboot.scss | 2 | ||||
| -rw-r--r-- | scss/_variables.scss | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss index 3e00b7fab..5ee563f93 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -290,7 +290,7 @@ table { caption { padding-top: $table-cell-padding; padding-bottom: $table-cell-padding; - color: $text-muted; + color: $table-caption-color; text-align: left; caption-side: bottom; } diff --git a/scss/_variables.scss b/scss/_variables.scss index 0a34e6c67..14f5b8b01 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -320,6 +320,7 @@ $table-dark-color: $body-bg !default; $table-striped-order: odd !default; +$table-caption-color: $text-muted !default; // Buttons + Forms // |
