diff options
| author | Jacob Thornton <[email protected]> | 2011-08-21 18:07:47 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-08-21 18:07:47 -0700 |
| commit | e1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e (patch) | |
| tree | e1d6e737b7f9351dbee9b6921004c8f1bfbe3015 /bootstrap-1.0.0.css | |
| parent | 22dbf9d8e4fc5568d9d49b40d1c1020fbab064c9 (diff) | |
| download | bootstrap-e1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e.tar.xz bootstrap-e1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e.zip | |
fix disabled button for ie 8 and below
Diffstat (limited to 'bootstrap-1.0.0.css')
| -rw-r--r-- | bootstrap-1.0.0.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/bootstrap-1.0.0.css b/bootstrap-1.0.0.css index 1c25e55f0..5244c6f13 100644 --- a/bootstrap-1.0.0.css +++ b/bootstrap-1.0.0.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: Sun Aug 21 13:35:51 PDT 2011 + * Date: Sun Aug 21 18:07:44 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). @@ -445,7 +445,15 @@ a:hover { padding-left: 9px; font-size: 11px; } -.btn:disabled, .btn.disabled { +.btn.disabled { + background-image: none; + filter: alpha(opacity=65); + -khtml-opacity: 0.65; + -moz-opacity: 0.65; + opacity: 0.65; + cursor: default; +} +.btn:disabled { background-image: none; filter: alpha(opacity=65); -khtml-opacity: 0.65; |
