diff options
| author | Mark Otto <[email protected]> | 2012-11-04 12:38:35 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-11-04 12:38:35 -0800 |
| commit | 508cc1fef4e11b2f985bff5bd663449676d10b0e (patch) | |
| tree | 0e9ac0030b20d23ad9c4b123880dbef72cba015f /docs/base-css.html | |
| parent | 269be76f4a5d8d6098bbd068b506e6bf72f23e00 (diff) | |
| download | bootstrap-508cc1fef4e11b2f985bff5bd663449676d10b0e.tar.xz bootstrap-508cc1fef4e11b2f985bff5bd663449676d10b0e.zip | |
change up list classes to use .list- prefix
Diffstat (limited to 'docs/base-css.html')
| -rw-r--r-- | docs/base-css.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/base-css.html b/docs/base-css.html index d3e4ec307..aceb665c3 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -349,7 +349,7 @@ <h3>Unstyled</h3> <p>Remove default the <code>list-style</code> and left padding on list items (immediate children only).</p> <div class="bs-docs-example"> - <ul class="unstyled"> + <ul class="list-unstyled"> <li>Lorem ipsum dolor sit amet</li> <li>Consectetur adipiscing elit</li> <li>Integer molestie lorem at massa</li> @@ -368,7 +368,7 @@ </ul> </div> <pre class="prettyprint linenums"> -<ul class="unstyled"> +<ul class="list-unstyled"> <li>...</li> </ul> </pre> @@ -376,14 +376,14 @@ <h3>Inline</h3> <p>Place all list items on a single line with <code>inline-block</code> and some light padding.</p> <div class="bs-docs-example"> - <ul class="inline"> + <ul class="list-inline"> <li>Lorem ipsum</li> <li>Phasellus iaculis</li> <li>Nulla volutpat</li> </ul> </div> <pre class="prettyprint linenums"> -<ul class="inline"> +<ul class="list-inline"> <li>...</li> </ul> </pre> |
