diff options
| author | Chris Rebert <[email protected]> | 2015-10-27 12:46:02 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-10-27 12:47:04 -0700 |
| commit | fd39d910582c771b2fb208b416f918b178320eba (patch) | |
| tree | 10183a82eff0c6b999918a22bfd1738765bc8478 /scss | |
| parent | 5ee0d228566c8e3a72367383ec2712884e75ac8b (diff) | |
| download | bootstrap-fd39d910582c771b2fb208b416f918b178320eba.tar.xz bootstrap-fd39d910582c771b2fb208b416f918b178320eba.zip | |
Give better description of IE9 transparent click bug & workaround
[skip sauce]
[skip validator]
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_carousel.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_carousel.scss b/scss/_carousel.scss index b02a2cd21..d9fb3b84d 100644 --- a/scss/_carousel.scss +++ b/scss/_carousel.scss @@ -178,9 +178,9 @@ cursor: pointer; // IE9 hack for event handling // - // Internet Explorer 9 does not support clicks on elements without a set - // `background-color`. We cannot use `filter` since that's not viewed as a - // background color by the browser. Thus, a hack is needed. + // Internet Explorer 9 does not properly handle clicks on elements with a `background-color` of `transparent`, + // so we use rgba(0,0,0,0) instead since it's a non-buggy equivalent. + // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer background-color: rgba(0,0,0,0); // IE9 border: 1px solid $carousel-indicator-border-color; border-radius: 10px; |
