diff options
| author | Gordon Woodhull <[email protected]> | 2013-09-17 12:03:02 -0400 |
|---|---|---|
| committer | Gordon Woodhull <[email protected]> | 2013-09-17 12:03:02 -0400 |
| commit | abee1cdf9d3e276e2fbc80b3a518004500f0f8e9 (patch) | |
| tree | 718679b3a48b026c0058dff0e8438f516d1ef36e /getting-started.html | |
| parent | f2750dd6bcb27648977d2c2de2931d945c5492a8 (diff) | |
| download | bootstrap-abee1cdf9d3e276e2fbc80b3a518004500f0f8e9.tar.xz bootstrap-abee1cdf9d3e276e2fbc80b3a518004500f0f8e9.zip | |
a start at documenting plugin class changes
Diffstat (limited to 'getting-started.html')
| -rw-r--r-- | getting-started.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/getting-started.html b/getting-started.html index f465a67eb..25f9e9289 100644 --- a/getting-started.html +++ b/getting-started.html @@ -449,6 +449,44 @@ bootstrap/ </table> </div><!-- /.table-responsive --> + <h2 id="plugin-migration-classes">Minor class changes</h2> + <p>Plugin class changes between v2.x and v3.0.</p> + <div class="table-responsive"> + <table class="table table-bordered table-striped"> + <thead> + <tr> + <th>Bootstrap 2.x</th> + <th>Bootstrap 3.0</th> + </tr> + </thead> + <tbody> + <tr> + <td><code>.accordion</code></td> + <td><code>.panel-group</code></td> + </tr> + <tr> + <td><code>.accordion-group</code></td> + <td><code>.panel .panel-default</code></td> + </tr> + <tr> + <td><code>.accordion-heading</code></td> + <td><code>.panel-heading</code></td> + </tr> + <tr> + <td><code>.accordion-body</code></td> + <td><code>.panel-collapse</code></td> + </tr> + <tr> + <td><code>.accordion-inner</code></td> + <td><code>.panel-body</code></td> + </tr> + <tr> + <td><code>.alert-error</code></td> + <td><code>.alert-danger</code></td> + </tr> + </tbody> + </table> + </div><!-- /.table-responsive --> <h2 id="migration-new">What's new</h2> <p>We've added new elements and changed some existing ones. Here are the new or updated styles.</p> |
