diff options
| author | Mark Otto <[email protected]> | 2016-05-11 23:26:39 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-05-11 23:26:39 -0700 |
| commit | 64e7230d337c5c7cf401babeffe537395a109012 (patch) | |
| tree | 01713030e3c947a2e8c802f24126b99f41034ea1 /scss | |
| parent | 1f253269264d7d42f220812a7ddf33089b740b6b (diff) | |
| download | bootstrap-64e7230d337c5c7cf401babeffe537395a109012.tar.xz bootstrap-64e7230d337c5c7cf401babeffe537395a109012.zip | |
Fixes #19563: Add variable for setting background-color on .bg-inverse
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_variables.scss | 1 | ||||
| -rw-r--r-- | scss/utilities/_background.scss | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss index a98f4edbe..d50d8e281 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -49,6 +49,7 @@ $brand-success: #5cb85c !default; $brand-info: #5bc0de !default; $brand-warning: #f0ad4e !default; $brand-danger: #d9534f !default; +$brand-inverse: $gray-dark !default; // Options diff --git a/scss/utilities/_background.scss b/scss/utilities/_background.scss index 4bbf7318d..b1589792f 100644 --- a/scss/utilities/_background.scss +++ b/scss/utilities/_background.scss @@ -2,11 +2,8 @@ // Contextual backgrounds // -// Inverse -// TODO: redo this as a proper class .bg-inverse { - color: $gray-lighter; - background-color: $gray-dark; + background-color: $brand-inverse; } .bg-faded { |
