remove references to -* outside _variables.scss

This commit is contained in:
Christopher Baker 2016-04-17 18:56:09 -07:00
parent 0d5b6aa4e8
commit bae54aa8fc
4 changed files with 15 additions and 10 deletions

View File

@ -48,5 +48,5 @@
.figure-caption { .figure-caption {
font-size: $figure-caption-font-size; font-size: $figure-caption-font-size;
color: $gray-light; color: $figure-caption-color;
} }

View File

@ -121,19 +121,19 @@
.thead-inverse { .thead-inverse {
th { th {
color: #fff; color: #fff;
background-color: $gray-dark; background-color: $table-bg-inverse;
} }
} }
.thead-default { .thead-default {
th { th {
color: $gray; color: $table-head-color;
background-color: $gray-lighter; background-color: $table-head-bg;
} }
} }
.table-inverse { .table-inverse {
color: $gray-lighter; color: $body-bg;
background-color: $gray-dark; background-color: $table-bg-inverse;
&.table-bordered { &.table-bordered {
border: 0; border: 0;
@ -142,7 +142,7 @@
th, th,
td, td,
thead th { thead th {
border-color: $gray; border-color: $body-bg;
} }
} }

View File

@ -244,10 +244,14 @@ $table-cell-padding: .75rem !default;
$table-sm-cell-padding: .3rem !default; $table-sm-cell-padding: .3rem !default;
$table-bg: transparent !default; $table-bg: transparent !default;
$table-bg-inverse: $gray-dark !default;
$table-bg-accent: #f9f9f9 !default; $table-bg-accent: #f9f9f9 !default;
$table-bg-hover: #f5f5f5 !default; $table-bg-hover: #f5f5f5 !default;
$table-bg-active: $table-bg-hover !default; $table-bg-active: $table-bg-hover !default;
$table-head-bg: $gray-lighter !default;
$table-head-color: $gray !default;
$table-border-width: $border-width !default; $table-border-width: $border-width !default;
$table-border-color: $gray-lighter !default; $table-border-color: $gray-lighter !default;
@ -750,6 +754,7 @@ $thumbnail-box-shadow: 0 1px 2px rgba(0,0,0,.075) !default;
// Figures // Figures
$figure-caption-font-size: 90% !default; $figure-caption-font-size: 90% !default;
$figure-caption-color: $gray-light !default;
// Breadcrumbs // Breadcrumbs

View File

@ -5,12 +5,12 @@
// Inverse // Inverse
// TODO: redo this as a proper class // TODO: redo this as a proper class
.bg-inverse { .bg-inverse {
color: $gray-lighter; color: $body-bg;
background-color: $gray-dark; background-color: $body-color;
} }
.bg-faded { .bg-faded {
background-color: $gray-lightest; background-color: darken($body-bg, 3%);
} }
@include bg-variant('.bg-primary', $brand-primary); @include bg-variant('.bg-primary', $brand-primary);