diff options
| author | Kevin Kirsche <[email protected]> | 2015-06-08 01:34:46 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-06-08 01:44:32 -0700 |
| commit | 9747ea52310a2dc3a168fe4ff6de49074bde24c1 (patch) | |
| tree | 0b9d44ecb3b1abe5d3ae0f97a73e6e3fa23b03b3 /docs/examples | |
| parent | e7a4f9b4fe9ff6562c884fb22384e1891def9386 (diff) | |
| download | bootstrap-9747ea52310a2dc3a168fe4ff6de49074bde24c1.tar.xz bootstrap-9747ea52310a2dc3a168fe4ff6de49074bde24c1.zip | |
Use new gradient syntax in justified nav example; fixes #16598
Closes #16599 by merging a tweaked version of it.
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/justified-nav/justified-nav.css | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/examples/justified-nav/justified-nav.css b/docs/examples/justified-nav/justified-nav.css index f8fcf5d13..7ba9cd75e 100644 --- a/docs/examples/justified-nav/justified-nav.css +++ b/docs/examples/justified-nav/justified-nav.css @@ -37,8 +37,7 @@ body { 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: -webkit-gradient(linear, left top, left bottom, from(top), color-stop(0%, #f5f5f5), to(#e5e5e5)); - background-image: linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); + background-image: linear-gradient(to bottom, #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; |
