diff options
| author | Chris Rebert <[email protected]> | 2015-04-07 21:59:49 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-04-07 22:04:40 -0700 |
| commit | 2b3a9cda4e9efa44d7b2c5e9b050e5393a111c32 (patch) | |
| tree | 31a793bc0bf7704da3ec599321972bdabd8dc849 | |
| parent | 8a9d698daf6e2e25004733810b9fa8d0a4a1ccd4 (diff) | |
| download | bootstrap-2b3a9cda4e9efa44d7b2c5e9b050e5393a111c32.tar.xz bootstrap-2b3a9cda4e9efa44d7b2c5e9b050e5393a111c32.zip | |
Use CSS hack to fix IE8 .caret regression introduced by #15697; fixes #16172
[skip sauce]
[skip validator]
| -rw-r--r-- | dist/css/bootstrap.css | 1 | ||||
| -rw-r--r-- | less/dropdowns.less | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 1baf38df7..789ab1992 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3561,6 +3561,7 @@ tbody.collapse.in { margin-left: 2px; vertical-align: middle; border-top: 4px dashed; + border-top: 4px solid\9; border-right: 4px solid transparent; border-left: 4px solid transparent; } diff --git a/less/dropdowns.less b/less/dropdowns.less index af344607b..f47a4bce8 100644 --- a/less/dropdowns.less +++ b/less/dropdowns.less @@ -11,6 +11,7 @@ margin-left: 2px; vertical-align: middle; border-top: @caret-width-base dashed; + border-top: @caret-width-base ~"solid\9"; // IE8 border-right: @caret-width-base solid transparent; border-left: @caret-width-base solid transparent; } |
