aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/justified-nav
diff options
context:
space:
mode:
authorBas Bosman <[email protected]>2014-02-22 11:17:58 +0100
committerBas Bosman <[email protected]>2014-03-07 09:01:54 +0100
commitcb7eb674accd24b6b73f26ef23cf4a301b6ebfaf (patch)
tree6a08e87eb348c9ab4ec14059dcb6d662da908a87 /docs/examples/justified-nav
parent84a7431dfd036df64df9aa9ecab82a54bd8083d8 (diff)
downloadbootstrap-cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf.tar.xz
bootstrap-cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf.zip
Add autoprefixer
Diffstat (limited to 'docs/examples/justified-nav')
-rw-r--r--docs/examples/justified-nav/justified-nav.css12
1 files changed, 6 insertions, 6 deletions
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;