]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove dropped btn-xs and btn-group-xs from docs 17236/head
authorvsn4ik <vsn4ik@gmail.com>
Sat, 22 Aug 2015 18:16:05 +0000 (21:16 +0300)
committervsn4ik <vsn4ik@gmail.com>
Sat, 22 Aug 2015 18:16:05 +0000 (21:16 +0300)
docs/components/button-group.md
docs/examples/offcanvas/index.html
docs/migration.md

index 5f7886303355db4a88dc47ab5e0688b301f7b035..c14d3d63ab427e9f96427f094891e2d14ea5308c 100644 (file)
@@ -68,19 +68,12 @@ Instead of applying button sizing classes to every button in a group, just add `
     <button type="button" class="btn btn-secondary">Middle</button>
     <button type="button" class="btn btn-secondary">Right</button>
   </div>
-  <br>
-  <div class="btn-group btn-group-xs" role="group" aria-label="Extra small button group">
-    <button type="button" class="btn btn-secondary">Left</button>
-    <button type="button" class="btn btn-secondary">Middle</button>
-    <button type="button" class="btn btn-secondary">Right</button>
-  </div>
 </div>
 
 {% highlight html %}
 <div class="btn-group btn-group-lg" role="group" aria-label="...">...</div>
 <div class="btn-group" role="group" aria-label="...">...</div>
 <div class="btn-group btn-group-sm" role="group" aria-label="...">...</div>
-<div class="btn-group btn-group-xs" role="group" aria-label="...">...</div>
 {% endhighlight %}
 
 ## Nesting
index 5e963d0be2f87bc475359d664c8ad7fa9019a7b3..115562ae8d4ab120ec8fb0c621845881ef933ece 100644 (file)
@@ -49,7 +49,7 @@
 
         <div class="col-xs-12 col-sm-9">
           <p class="pull-right visible-xs">
-            <button type="button" class="btn btn-primary btn-xs" data-toggle="offcanvas">Toggle nav</button>
+            <button type="button" class="btn btn-primary btn-sm" data-toggle="offcanvas">Toggle nav</button>
           </p>
           <div class="jumbotron">
             <h1>Hello, world!</h1>
index bd8ee7529bdc2cabc8b0b2cfad191fba70b937d3..d1c58c94f3b87a5191f6a58fcf320fc211c3a048 100644 (file)
@@ -77,6 +77,14 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with
 
 - Added a new `~480px` grid breakpoint, meaning there are now five total tiers.
 
+### Buttons
+
+- Dropped the `.btn-xs` class entirely.
+
+### Button group
+
+- Dropped the `.btn-group-xs` class entirely.
+
 ### Navs
 
 - Dropped nearly all `>` selectors for simpler styling via un-nested classes.