diff options
| author | Bas Bosman <[email protected]> | 2014-02-22 11:17:58 +0100 |
|---|---|---|
| committer | Bas Bosman <[email protected]> | 2014-03-07 09:01:54 +0100 |
| commit | cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf (patch) | |
| tree | 6a08e87eb348c9ab4ec14059dcb6d662da908a87 /docs/examples | |
| parent | 84a7431dfd036df64df9aa9ecab82a54bd8083d8 (diff) | |
| download | bootstrap-cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf.tar.xz bootstrap-cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf.zip | |
Add autoprefixer
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/blog/blog.css | 3 | ||||
| -rw-r--r-- | docs/examples/cover/cover.css | 3 | ||||
| -rw-r--r-- | docs/examples/justified-nav/justified-nav.css | 12 | ||||
| -rw-r--r-- | docs/examples/offcanvas/offcanvas.css | 2 |
4 files changed, 11 insertions, 9 deletions
diff --git a/docs/examples/blog/blog.css b/docs/examples/blog/blog.css index 575076a8d..9d7298160 100644 --- a/docs/examples/blog/blog.css +++ b/docs/examples/blog/blog.css @@ -37,7 +37,8 @@ h6, .h6 { .blog-masthead { background-color: #428bca; - box-shadow: inset 0 -2px 5px rgba(0,0,0,.1); + -webkit-box-shadow: inset 0 -2px 5px rgba(0,0,0,.1); + box-shadow: inset 0 -2px 5px rgba(0,0,0,.1); } /* Nav links */ diff --git a/docs/examples/cover/cover.css b/docs/examples/cover/cover.css index 9fcc9274f..aee9449e6 100644 --- a/docs/examples/cover/cover.css +++ b/docs/examples/cover/cover.css @@ -33,7 +33,8 @@ body { color: #fff; text-align: center; text-shadow: 0 1px 3px rgba(0,0,0,.5); - box-shadow: inset 0 0 100px rgba(0,0,0,.5); + -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5); + box-shadow: inset 0 0 100px rgba(0,0,0,.5); } /* Extra markup and styles for table-esque vertical and horizontal centering */ diff --git a/docs/examples/justified-nav/justified-nav.css b/docs/examples/justified-nav/justified-nav.css index 50125876f..fd71b43a9 100644 --- a/docs/examples/justified-nav/justified-nav.css +++ b/docs/examples/justified-nav/justified-nav.css @@ -34,11 +34,10 @@ body { color: #777; text-align: center; background-color: #e5e5e5; /* Old browsers */ - background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); /* FF3.6+ */ - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */ - background-image: -webkit-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Chrome 10+,Safari 5.1+ */ - background-image: -o-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Opera 11.10+ */ - background-image: linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* W3C */ + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e5e5e5)); + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); + background-image: linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */ background-repeat: repeat-x; /* Repeat the gradient */ border-bottom: 1px solid #d5d5d5; @@ -48,7 +47,8 @@ body { .nav-justified > .active > a:focus { background-color: #ddd; background-image: none; - box-shadow: inset 0 3px 7px rgba(0,0,0,.15); + -webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.15); + box-shadow: inset 0 3px 7px rgba(0,0,0,.15); } .nav-justified > li:first-child > a { border-radius: 5px 5px 0 0; diff --git a/docs/examples/offcanvas/offcanvas.css b/docs/examples/offcanvas/offcanvas.css index eeace1601..2a72199d5 100644 --- a/docs/examples/offcanvas/offcanvas.css +++ b/docs/examples/offcanvas/offcanvas.css @@ -21,7 +21,7 @@ footer { .row-offcanvas { position: relative; -webkit-transition: all .25s ease-out; - -moz-transition: all .25s ease-out; + -o-transition: all .25s ease-out; transition: all .25s ease-out; } |
