Skip to content

Commit

Permalink
v4: Miscellaneous color changes (#21199)
Browse files Browse the repository at this point in the history
* Darken dismiss icon opacity
* Darken text on active list group items
* Darken light gray for accessibility/contrast, then update gray and dark gray to match
  • Loading branch information
mdo authored Nov 26, 2016
1 parent 49be9bc commit 76907b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions scss/_close.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
line-height: 1;
color: $close-color;
text-shadow: $close-text-shadow;
opacity: .2;
opacity: .5;

@include hover-focus {
color: $close-color;
text-decoration: none;
cursor: pointer;
opacity: .5;
opacity: .75;
}
}

Expand Down
8 changes: 4 additions & 4 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@
//
// Grayscale and brand colors for use across Bootstrap.

$gray-dark: #373a3c !default;
$gray: #55595c !default;
$gray-light: #818a91 !default;
$gray-dark: #292b2c !default;
$gray: #464a4c !default;
$gray-light: #636c72 !default;
$gray-lighter: #eceeef !default;
$gray-lightest: #f7f7f9 !default;

Expand Down Expand Up @@ -829,7 +829,7 @@ $list-group-hover-bg: #f5f5f5 !default;
$list-group-active-color: $component-active-color !default;
$list-group-active-bg: $component-active-bg !default;
$list-group-active-border: $list-group-active-bg !default;
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
$list-group-active-text-color: lighten($list-group-active-bg, 50%) !default;

$list-group-disabled-color: $gray-light !default;
$list-group-disabled-bg: $gray-lighter !default;
Expand Down

0 comments on commit 76907b8

Please sign in to comment.