mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-31 09:05:47 +02:00
Deprecate the Sass var and remove any occurence of the .text-muted
(#37890)
This commit is contained in:
committed by
GitHub
parent
934d7a0c1a
commit
9042efd0f8
@@ -583,7 +583,7 @@ $utilities: map-merge(
|
||||
values: map-merge(
|
||||
$utilities-text-colors,
|
||||
(
|
||||
"muted": $text-muted, // deprecated
|
||||
"muted": var(--#{$prefix}secondary-color), // deprecated
|
||||
"black-50": rgba($black, .5), // deprecated
|
||||
"white-50": rgba($white, .5), // deprecated
|
||||
"body-secondary": var(--#{$prefix}secondary-color),
|
||||
|
@@ -667,7 +667,9 @@ $small-font-size: .875em !default;
|
||||
|
||||
$sub-sup-font-size: .75em !default;
|
||||
|
||||
$text-muted: var(--#{$prefix}secondary-color) !default;
|
||||
// fusv-disable
|
||||
$text-muted: var(--#{$prefix}secondary-color) !default; // Deprecated in 5.3.0
|
||||
// fusv-enable
|
||||
|
||||
$initialism-font-size: $small-font-size !default;
|
||||
|
||||
@@ -740,7 +742,7 @@ $table-striped-columns-order: even !default;
|
||||
|
||||
$table-group-separator-color: currentcolor !default;
|
||||
|
||||
$table-caption-color: $text-muted !default;
|
||||
$table-caption-color: var(--#{$prefix}secondary-color) !default;
|
||||
|
||||
$table-bg-scale: -80% !default;
|
||||
// scss-docs-end table-variables
|
||||
@@ -846,7 +848,7 @@ $form-text-margin-top: .25rem !default;
|
||||
$form-text-font-size: $small-font-size !default;
|
||||
$form-text-font-style: null !default;
|
||||
$form-text-font-weight: null !default;
|
||||
$form-text-color: $text-muted !default;
|
||||
$form-text-color: var(--#{$prefix}secondary-color) !default;
|
||||
// scss-docs-end form-text-variables
|
||||
|
||||
// scss-docs-start form-label-variables
|
||||
|
Reference in New Issue
Block a user