diff options
| author | Mark Otto <[email protected]> | 2011-09-02 00:56:03 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-09-02 00:56:03 -0700 |
| commit | 46e4fb31338807be1535208fb07dfc3fff89fe08 (patch) | |
| tree | bee0b1cdc3be2102b1cfce7b174062fdd34aa596 /bootstrap-1.2.0.css | |
| parent | 251882892f27fa074d9f801c651060552a970282 (diff) | |
| download | bootstrap-46e4fb31338807be1535208fb07dfc3fff89fe08.tar.xz bootstrap-46e4fb31338807be1535208fb07dfc3fff89fe08.zip | |
remove active state from buttons by moving the :active before :disabled
Diffstat (limited to 'bootstrap-1.2.0.css')
| -rw-r--r-- | bootstrap-1.2.0.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bootstrap-1.2.0.css b/bootstrap-1.2.0.css index c324bee3e..7746a57d4 100644 --- a/bootstrap-1.2.0.css +++ b/bootstrap-1.2.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: Fri Sep 2 00:52:12 PDT 2011 + * Date: Fri Sep 2 00:54:51 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). @@ -1564,6 +1564,11 @@ footer { border-color: #0064cd #0064cd #003f81; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); } +.btn:active { + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); +} .btn.disabled { cursor: default; background-image: none; @@ -1586,11 +1591,6 @@ footer { -moz-box-shadow: none; box-shadow: none; } -.btn:active { - -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); -} .btn.large { font-size: 16px; line-height: normal; |
