diff options
| author | Jacob Thornton <[email protected]> | 2011-08-21 12:19:01 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-08-21 12:19:01 -0700 |
| commit | b18e76f99072fe94f771ad30e492f2d8aca463cb (patch) | |
| tree | 240ac1d2ed083ba64d371e4e0ec9cc9946f27238 /bootstrap-1.0.0.css | |
| parent | 1d96417201721280c2a0579b875c0b64ea12c1ba (diff) | |
| download | bootstrap-b18e76f99072fe94f771ad30e492f2d8aca463cb.tar.xz bootstrap-b18e76f99072fe94f771ad30e492f2d8aca463cb.zip | |
introduce .fill class to top-nav for overflow bug
Diffstat (limited to 'bootstrap-1.0.0.css')
| -rw-r--r-- | bootstrap-1.0.0.css | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/bootstrap-1.0.0.css b/bootstrap-1.0.0.css index 1de3ff56e..8ea22a823 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 12:06:13 PDT 2011 + * Date: Sun Aug 21 12:18:33 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). @@ -422,6 +422,7 @@ a:hover { background-image: -webkit-linear-gradient(#049cdb, #0064cd); background-image: -o-linear-gradient(#049cdb, #0064cd); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0)"; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0); background-image: linear-gradient(#049cdb, #0064cd); color: #fff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); @@ -1092,7 +1093,21 @@ table.zebra-striped th.headerSortUp.purple, table.zebra-striped th.headerSortDow * Repeatable UI elements outside the base styles provided from the scaffolding * ---------------------------------------------------------------------------- */ div.topbar { + height: 40px; + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 10000; + overflow: visible; +} +div.topbar .fill { background: #222; + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; background-color: #222222; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222)); @@ -1102,14 +1117,8 @@ div.topbar { background-image: -webkit-linear-gradient(#333333, #222222); background-image: -o-linear-gradient(#333333, #222222); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0)"; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); background-image: linear-gradient(#333333, #222222); - height: 40px; - position: fixed; - top: 0; - left: 0; - right: 0; - z-index: 10000; - overflow: visible; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); @@ -1124,6 +1133,9 @@ div.topbar a:hover, div.topbar ul li.active a { color: #ffffff; text-decoration: none; } +div.topbar h3 { + position: relative; +} div.topbar h3 a { float: left; display: block; @@ -1362,6 +1374,7 @@ div.alert-message { background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.15)); background-image: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.15)); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='rgba(0, 0, 0, 0.15)', GradientType=0)"; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='rgba(0, 0, 0, 0.15)', GradientType=0); background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.15)); background-color: #e6e6e6; margin-bottom: 18px; |
