]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
a start at documenting plugin class changes
authorGordon Woodhull <gordon@woodhull.com>
Tue, 17 Sep 2013 16:03:02 +0000 (12:03 -0400)
committerGordon Woodhull <gordon@woodhull.com>
Tue, 17 Sep 2013 16:03:02 +0000 (12:03 -0400)
getting-started.html

index f465a67eb37237297805fc8ddcd5735637685412..25f9e92898996f6847839b0fc080eaf4ea8cef16 100644 (file)
@@ -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>