mirror of https://github.com/twbs/bootstrap.git
(#22414) Rename for consistency `$list-group-link-*-*` to `$list-group-action-*-*`
This commit is contained in:
parent
6ed8a735d0
commit
9f0929013e
|
|
@ -19,19 +19,19 @@
|
||||||
|
|
||||||
.list-group-item-action {
|
.list-group-item-action {
|
||||||
width: 100%; // For `<button>`s (anchors become 100% by default though)
|
width: 100%; // For `<button>`s (anchors become 100% by default though)
|
||||||
color: $list-group-link-color;
|
color: $list-group-action-color;
|
||||||
text-align: inherit; // For `<button>`s (anchors inherit)
|
text-align: inherit; // For `<button>`s (anchors inherit)
|
||||||
|
|
||||||
// Hover state
|
// Hover state
|
||||||
@include hover-focus {
|
@include hover-focus {
|
||||||
color: $list-group-link-hover-color;
|
color: $list-group-action-hover-color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: $list-group-hover-bg;
|
background-color: $list-group-hover-bg;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
color: $list-group-link-active-color;
|
color: $list-group-action-active-color;
|
||||||
background-color: $list-group-link-active-bg;
|
background-color: $list-group-action-active-bg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -802,11 +802,11 @@ $list-group-active-border-color: $list-group-active-bg !default;
|
||||||
$list-group-disabled-color: $gray-light !default;
|
$list-group-disabled-color: $gray-light !default;
|
||||||
$list-group-disabled-bg: $list-group-bg !default;
|
$list-group-disabled-bg: $list-group-bg !default;
|
||||||
|
|
||||||
$list-group-link-color: $gray !default;
|
$list-group-action-color: $gray !default;
|
||||||
$list-group-link-hover-color: $list-group-link-color !default;
|
$list-group-action-hover-color: $list-group-action-color !default;
|
||||||
|
|
||||||
$list-group-link-active-color: $list-group-color !default;
|
$list-group-action-active-color: $list-group-color !default;
|
||||||
$list-group-link-active-bg: $gray-lighter !default;
|
$list-group-action-active-bg: $gray-lighter !default;
|
||||||
|
|
||||||
|
|
||||||
// Image thumbnails
|
// Image thumbnails
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue