diff --git a/bootstrap-1.3.0.css b/bootstrap-1.3.0.css index f7dd9a9e..a37af576 100644 --- a/bootstrap-1.3.0.css +++ b/bootstrap-1.3.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: Mon Sep 12 22:15:45 PDT 2011 + * Date: Tue Sep 13 09:06:02 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). @@ -94,6 +94,9 @@ html { a:focus { outline: thin dotted; } +a:hover, a:active { + outline: 0; +} article, aside, details, diff --git a/bootstrap-1.3.0.min.css b/bootstrap-1.3.0.min.css index 8840aa75..7efe6ea6 100644 --- a/bootstrap-1.3.0.min.css +++ b/bootstrap-1.3.0.min.css @@ -5,6 +5,7 @@ ol,ul{list-style:none;} q:before,q:after,blockquote:before,blockquote:after{content:"";} html{overflow-y:scroll;font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} a:focus{outline:thin dotted;} +a:hover,a:active{outline:0;} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} audio:not([controls]){display:none;} diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 650f6ec3..d30b932c 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -23,7 +23,6 @@ section > .row { -------------------------------------------------- */ .jumbotron { padding-top: 40px; - overflow: hidden; } .jumbotron .inner { background: transparent url(../img/grid-18px.png) top center; diff --git a/docs/assets/ico/bootstrap-apple-114x114.png b/docs/assets/ico/bootstrap-apple-114x114.png new file mode 100644 index 00000000..c434d971 Binary files /dev/null and b/docs/assets/ico/bootstrap-apple-114x114.png differ diff --git a/docs/assets/ico/bootstrap-apple-57x57.png b/docs/assets/ico/bootstrap-apple-57x57.png new file mode 100644 index 00000000..13c2f7f3 Binary files /dev/null and b/docs/assets/ico/bootstrap-apple-57x57.png differ diff --git a/docs/assets/ico/bootstrap-apple-72x72.png b/docs/assets/ico/bootstrap-apple-72x72.png new file mode 100644 index 00000000..c4bfb622 Binary files /dev/null and b/docs/assets/ico/bootstrap-apple-72x72.png differ diff --git a/docs/assets/ico/favicon.ico b/docs/assets/ico/favicon.ico new file mode 100644 index 00000000..3455c3fb Binary files /dev/null and b/docs/assets/ico/favicon.ico differ diff --git a/docs/index.html b/docs/index.html index c8d5d81e..fe372e0e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -27,10 +27,10 @@ - - - - + + + + diff --git a/lib/reset.less b/lib/reset.less index 9e2c6bef..6be76fdb 100644 --- a/lib/reset.less +++ b/lib/reset.less @@ -30,6 +30,11 @@ html { a:focus { outline: thin dotted; } +// Hover & Active +a:hover, +a:active { + outline: 0; +} // Display in IE6-9 and FF3 // -------------------------