Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2018-12-22 01:49:11 +0300
committerMark Otto <markdotto@gmail.com>2018-12-22 01:49:11 +0300
commitfca7531897447fb2f9524559dfb00ecee0944d58 (patch)
tree980d2e41ff858687ef3f532e9175c86ca8b59e06 /scss
parentcdcfd3b1e87638449c311ea5245bfb000226c3de (diff)
parentf50f6e03551ae9f9477f4ebdfe934c7452d6c6ad (diff)
Merge branch 'table-dark-colors' into v4-dev
Diffstat (limited to 'scss')
-rw-r--r--scss/_variables.scss5
1 files changed, 3 insertions, 2 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss
index ddafa0c2c6..dbeab65f36 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -366,11 +366,12 @@ $table-head-bg: $gray-200 !default;
$table-head-color: $gray-700 !default;
$table-dark-color: $white !default;
-$table-dark-bg: $gray-900 !default;
+$table-dark-bg: $gray-800 !default;
$table-dark-accent-bg: rgba($white, .05) !default;
$table-dark-hover-color: $table-dark-color !default;
$table-dark-hover-bg: rgba($white, .075) !default;
-$table-dark-border-color: lighten($gray-900, 7.5%) !default;
+$table-dark-border-color: lighten($table-dark-bg, 7.5%) !default;
+$table-dark-color: $white !default;
$table-striped-order: odd !default;