0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 09:52:29 +01:00

Merge pull request #11186 from twbs/carousel_indicators_ie

Carousel indicators for IE8-9
This commit is contained in:
Mark Otto 2013-10-20 17:48:36 -07:00
commit 6d5c5105fa
3 changed files with 14 additions and 1 deletions

View File

@ -6438,6 +6438,8 @@ button.close {
margin: 1px; margin: 1px;
text-indent: -999px; text-indent: -999px;
cursor: pointer; cursor: pointer;
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
border: 1px solid #ffffff; border: 1px solid #ffffff;
border-radius: 10px; border-radius: 10px;
} }

File diff suppressed because one or more lines are too long

View File

@ -160,6 +160,17 @@
border: 1px solid @carousel-indicator-border-color; border: 1px solid @carousel-indicator-border-color;
border-radius: 10px; border-radius: 10px;
cursor: pointer; cursor: pointer;
// IE8-9 hack for event handling
//
// Internet Explorer 8-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.
//
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
// set alpha transparency for the best results possible.
background-color: #000 \9; // IE8
background-color: rgba(0,0,0,0); // IE9
} }
.active { .active {
margin: 0; margin: 0;