mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-24 14:13:06 +02:00
workaround for IE that check indicator does not appear (#25944)
This commit is contained in:
@@ -57,13 +57,14 @@
|
|||||||
// Build the custom controls out of pseudo-elements.
|
// Build the custom controls out of pseudo-elements.
|
||||||
|
|
||||||
.custom-control-label {
|
.custom-control-label {
|
||||||
|
position: relative;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
||||||
// Background-color and (when enabled) gradient
|
// Background-color and (when enabled) gradient
|
||||||
&::before {
|
&::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: (($line-height-base - $custom-control-indicator-size) / 2);
|
top: (($line-height-base - $custom-control-indicator-size) / 2);
|
||||||
left: 0;
|
left: -$custom-control-gutter;
|
||||||
display: block;
|
display: block;
|
||||||
width: $custom-control-indicator-size;
|
width: $custom-control-indicator-size;
|
||||||
height: $custom-control-indicator-size;
|
height: $custom-control-indicator-size;
|
||||||
@@ -78,7 +79,7 @@
|
|||||||
&::after {
|
&::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: (($line-height-base - $custom-control-indicator-size) / 2);
|
top: (($line-height-base - $custom-control-indicator-size) / 2);
|
||||||
left: 0;
|
left: -$custom-control-gutter;
|
||||||
display: block;
|
display: block;
|
||||||
width: $custom-control-indicator-size;
|
width: $custom-control-indicator-size;
|
||||||
height: $custom-control-indicator-size;
|
height: $custom-control-indicator-size;
|
||||||
|
Reference in New Issue
Block a user