1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-01 17:32:41 +02:00

Fixes #19563: Add variable for setting background-color on .bg-inverse

This commit is contained in:
Mark Otto
2016-05-11 23:26:39 -07:00
parent 1f25326926
commit 64e7230d33
2 changed files with 2 additions and 4 deletions

View File

@@ -49,6 +49,7 @@ $brand-success: #5cb85c !default;
$brand-info: #5bc0de !default; $brand-info: #5bc0de !default;
$brand-warning: #f0ad4e !default; $brand-warning: #f0ad4e !default;
$brand-danger: #d9534f !default; $brand-danger: #d9534f !default;
$brand-inverse: $gray-dark !default;
// Options // Options

View File

@@ -2,11 +2,8 @@
// Contextual backgrounds // Contextual backgrounds
// //
// Inverse
// TODO: redo this as a proper class
.bg-inverse { .bg-inverse {
color: $gray-lighter; background-color: $brand-inverse;
background-color: $gray-dark;
} }
.bg-faded { .bg-faded {