diff options
| author | Jacob Thornton <[email protected]> | 2011-08-30 23:25:37 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-08-30 23:25:37 -0700 |
| commit | 588cb1c06d372817e7be2a44384b177bef660f53 (patch) | |
| tree | 3f665a4ecd9872ddbb962518cc6ff1dc352e8bd4 /bootstrap-1.1.1.css | |
| parent | 49e343c464c931210e6ffc896fb7a511e5e773d0 (diff) | |
| download | bootstrap-588cb1c06d372817e7be2a44384b177bef660f53.tar.xz bootstrap-588cb1c06d372817e7be2a44384b177bef660f53.zip | |
revert dhg mdo suggestion for fixing ie
Diffstat (limited to 'bootstrap-1.1.1.css')
| -rw-r--r-- | bootstrap-1.1.1.css | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/bootstrap-1.1.1.css b/bootstrap-1.1.1.css index cb6cd43b5..650d28a27 100644 --- a/bootstrap-1.1.1.css +++ b/bootstrap-1.1.1.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Tue Aug 30 23:08:30 PDT 2011 + * Date: Tue Aug 30 23:25:32 PDT 2011 */ /* Reset.less * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). @@ -1222,8 +1222,9 @@ table .headerSortUp.purple, table .headerSortDown.purple { right: 0; } .nav .dropdown-toggle:hover, .nav .dropdown.open .dropdown-toggle { - background: #444; + background-color: #444; background-color: rgba(255, 255, 255, 0.05); + *background-color: #444; } .nav .dropdown-menu { background-color: #333; @@ -1232,8 +1233,8 @@ table .headerSortUp.purple, table .headerSortDown.purple { color: #fff; } .nav .dropdown-menu .dropdown-toggle.open { - background: #444; background-color: rgba(255, 255, 255, 0.05); + *background-color: #444; } .nav .dropdown-menu li a { color: #999; @@ -1341,8 +1342,11 @@ table .headerSortUp.purple, table .headerSortDown.purple { } .dropdown.open .dropdown-toggle { color: #fff; - background: #ccc; + background-color: #ccc; background-color: rgba(0, 0, 0, 0.3); + *background-color: #ccc; + /* ie6 -7 */ + } .dropdown.open .dropdown-menu { display: block; @@ -1879,8 +1883,11 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { height: 0; } .popover .inner { - background: #333; + background-color: #333; background-color: rgba(0, 0, 0, 0.8); + *background-color: #333; + /* IE 6-7 */ + padding: 3px; overflow: hidden; width: 280px; |
