From bd541083f14f8293bc327255c17da4f376443d02 Mon Sep 17 00:00:00 2001 From: Mark Otto <otto@github.com> Date: Thu, 19 Jun 2014 02:02:23 -0700 Subject: [PATCH] Nuke equal height columns example; got a few bugs that make it not ready for prime time in v3.2 --- docs/_includes/getting-started/examples.html | 7 -- .../equal-height-columns.css | 80 ----------------- docs/examples/equal-height-columns/index.html | 85 ------------------- 3 files changed, 172 deletions(-) delete mode 100644 docs/examples/equal-height-columns/equal-height-columns.css delete mode 100644 docs/examples/equal-height-columns/index.html diff --git a/docs/_includes/getting-started/examples.html b/docs/_includes/getting-started/examples.html index 49729f53ee..849d044c05 100644 --- a/docs/_includes/getting-started/examples.html +++ b/docs/_includes/getting-started/examples.html @@ -155,12 +155,5 @@ <h4>Offcanvas</h4> <p>Build a toggleable off-canvas navigation menu for use with Bootstrap.</p> </div> - <div class="col-xs-6 col-md-4"> - <a class="thumbnail" href="../examples/equal-height-columns/"> - <img src="../examples/screenshots/equal-height-columns.jpg" alt=""> - </a> - <h4>Equal-height grid columns</h4> - <p>Adds automatic equal-height grid columns to Bootstrap's grid system.</p> - </div> </div> </div> diff --git a/docs/examples/equal-height-columns/equal-height-columns.css b/docs/examples/equal-height-columns/equal-height-columns.css deleted file mode 100644 index 050467719b..0000000000 --- a/docs/examples/equal-height-columns/equal-height-columns.css +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Row with equal height columns - * -------------------------------------------------- - */ -.row-eq-height { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -/* - * Styles copied from the Grid example to make grid rows & columns visible. - */ -.container { - padding-right: 15px; - padding-left: 15px; -} - -h4 { - margin-top: 25px; -} -.row { - margin-bottom: 20px; -} -.row .row { - margin-top: 10px; - margin-bottom: 0; -} -[class*="col-"] { - padding-top: 15px; - padding-bottom: 15px; - background-color: #eee; - background-color: rgba(86,61,124,.15); - border: 1px solid #ddd; - border: 1px solid rgba(86,61,124,.2); -} - -/* - * Callout styles copied from Bootstrap's main docs. - */ -/* Common styles for all types */ -.bs-callout { - padding: 20px; - margin: 20px 0; - border-left: 3px solid #eee; -} -.bs-callout h4 { - margin-top: 0; - margin-bottom: 5px; -} -.bs-callout p:last-child { - margin-bottom: 0; -} -.bs-callout code { - background-color: #fff; - border-radius: 3px; -} -/* Variations */ -.bs-callout-danger { - background-color: #fdf7f7; - border-color: #d9534f; -} -.bs-callout-danger h4 { - color: #d9534f; -} -.bs-callout-warning { - background-color: #fcf8f2; - border-color: #f0ad4e; -} -.bs-callout-warning h4 { - color: #f0ad4e; -} -.bs-callout-info { - background-color: #f4f8fa; - border-color: #5bc0de; -} -.bs-callout-info h4 { - color: #5bc0de; -} diff --git a/docs/examples/equal-height-columns/index.html b/docs/examples/equal-height-columns/index.html deleted file mode 100644 index 2994b2837e..0000000000 --- a/docs/examples/equal-height-columns/index.html +++ /dev/null @@ -1,85 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <meta name="description" content=""> - <meta name="author" content=""> - <link rel="shortcut icon" href="../../assets/ico/favicon.ico"> - - <title>Equal Height Columns Example for Bootstrap</title> - - <!-- Bootstrap core CSS --> - <link href="../../dist/css/bootstrap.min.css" rel="stylesheet"> - - <!-- Custom styles for this template --> - <link href="equal-height-columns.css" rel="stylesheet"> - - <!-- Just for debugging purposes. Don't actually copy these 2 lines! --> - <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]--> - <script src="../../assets/js/ie-emulation-modes-warning.js"></script> - - <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> - <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> - - <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> - <!--[if lt IE 9]> - <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> - <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> - <![endif]--> - </head> - - <body> - <div class="container"> - - <div class="page-header"> - <h1>Bootstrap equal-height columns experiment</h1> - <p class="lead">A simple experiment that adds flexbox-based equal-height columns to Bootstrap's grid system.</p> - </div> - - <h3>Normal row (with unequal-height columns)</h3> - <p>For comparison, here's a normal row, <strong>without</strong> <code>.row-eq-height</code>.</p> - <div class="row"> - <div class="col-xs-4">.row > .col-xs-4</div> - <div class="col-xs-4">.row > .col-xs-4<br>this is<br>a much<br>taller<br>column<br>than the others</div> - <div class="col-xs-4">.row > .col-xs-4</div> - </div> - - - <h3>Row with equal-height columns</h3> - <p>This row uses the custom <code>.row-eq-height</code> class defined in <a href="equal-height-columns.css">this example's CSS</a> to make all of its columns automatically be of equal height.</p> - <p>All of the columns will stretch vertically to occupy the same height as the tallest column.</p> - - <div class="row row-eq-height"> - <div class="col-xs-4">.row.row-eq-height > .col-xs-4</div> - <div class="col-xs-4">.row.row-eq-height > .col-xs-4<br>this is<br>a much<br>taller<br>column<br>than the others</div> - <div class="col-xs-4">.row.row-eq-height > .col-xs-4</div> - </div> - - <div class="bs-callout bs-callout-danger"> - <h4>Warning: Browser compatibility</h4> - <p>The <code>.row-eq-height</code> class uses <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Flexible_boxes">CSS3's flexbox layout mode</a>, which is not supported in Internet Explorer 9 and below.</p> - <p>In any unsupported browser, the <code>.row-eq-height</code> class will have no effect.</p> - <p>For more info on browser support for flexbox, please consult <a href="http://caniuse.com/flexbox">"Can I use..."</a>.</p> - </div> - <div class="bs-callout bs-callout-warning"> - <h4>Warning: Changes column wrapping behavior</h4> - <p>If you have put more than 12 columns in one <code>.row-eq-height</code>, the columns will be forced to shrink into a single row, instead of wrapping onto a new line as they normally would.</p> - </div> - - <h3>Equal-height row with more than 12 columns</h3> - <div class="row row-eq-height"> - <div class="col-xs-4">.row.row-eq-height > .col-xs-4</div> - <div class="col-xs-4">.row.row-eq-height > .col-xs-4</div> - <div class="col-xs-4">.row.row-eq-height > .col-xs-4</div> - <div class="col-xs-4">.row.row-eq-height > .col-xs-4<br>This and subsequent columns would normally have wrapped onto a new line,<br>if not for <code>.row-eq-height</code>.</div> - <div class="col-xs-4">.row.row-eq-height > .col-xs-4<br></div> - </div> - - - </div> <!-- /container --> - - - </body> -</html> -- GitLab