Skip to content

Commit

Permalink
Merge branch 'v4-dev' of https://github.com/HMUDesign/bootstrap into …
Browse files Browse the repository at this point in the history
…HMUDesign-v4-dev
  • Loading branch information
mdo committed Oct 30, 2016
2 parents c9dc04b + 84f8018 commit 864343a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion scss/_images.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@

.figure-caption {
font-size: $figure-caption-font-size;
color: $gray-light;
color: $figure-caption-color;
}
12 changes: 6 additions & 6 deletions scss/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -106,25 +106,25 @@
.thead-inverse {
th {
color: #fff;
background-color: $gray-dark;
background-color: $table-bg-inverse;
}
}

.thead-default {
th {
color: $gray;
background-color: $gray-lighter;
color: $table-head-color;
background-color: $table-head-bg;
}
}

.table-inverse {
color: $gray-lighter;
background-color: $gray-dark;
color: $body-bg;
background-color: $table-bg-inverse;

th,
td,
thead th {
border-color: $gray;
border-color: $body-bg;
}

&.table-bordered {
Expand Down
12 changes: 10 additions & 2 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,10 @@ $border-width: 1px !default;
//
// Settings for the `<body>` element.

$body-bg: #fff !default;
$body-color: $gray-dark !default;
$body-bg: #fff !default;
$body-color: $gray-dark !default;
$inverse-bg: $gray-dark !default;
$inverse-color: $gray-lighter !default;


// 5. Links
Expand Down Expand Up @@ -310,10 +312,15 @@ $table-cell-padding: .75rem !default;
$table-sm-cell-padding: .3rem !default;

$table-bg: transparent !default;
$table-bg-inverse: $gray-dark !default;

$table-bg-accent: rgba(0,0,0,.05) !default;
$table-bg-hover: rgba(0,0,0,.075) !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-color: $gray-lighter !default;

Expand Down Expand Up @@ -842,6 +849,7 @@ $thumbnail-box-shadow: 0 1px 2px rgba(0,0,0,.075) !default;
// 30. Figures

$figure-caption-font-size: 90% !default;
$figure-caption-color: $gray-light !default;


// 31. Breadcrumbs
Expand Down
2 changes: 1 addition & 1 deletion scss/utilities/_background.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

.bg-faded {
background-color: $gray-lightest;
background-color: darken($body-bg, 3%);
}

@include bg-variant('.bg-primary', $brand-primary);
Expand Down

0 comments on commit 864343a

Please sign in to comment.