diff options
| author | Mark Otto <[email protected]> | 2013-10-20 16:46:38 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-10-20 16:46:38 -0700 |
| commit | 6a93a6b88a4b874fba5a1d1edd817cbd91ccfacc (patch) | |
| tree | 8cfb8e576efc82acbd8f9c165448289496b6ee7d /dist/css/bootstrap.css | |
| parent | 32468b087b615d1ed710f9118ff4f669cc5ad5e8 (diff) | |
| download | bootstrap-6a93a6b88a4b874fba5a1d1edd817cbd91ccfacc.tar.xz bootstrap-6a93a6b88a4b874fba5a1d1edd817cbd91ccfacc.zip | |
Fixes #10903 and #10457: IE8-9 don't support events on elements without background-color, so we have to hack it
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index aa2951658..a6812e028 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -730,7 +730,7 @@ address { } code, -kdb, +kbd, pre, samp { font-family: Monaco, Menlo, Consolas, "Courier New", monospace; @@ -6439,6 +6439,8 @@ button.close { margin: 1px; text-indent: -999px; cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); border: 1px solid #ffffff; border-radius: 10px; } |
