aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-03-03 12:59:14 -0800
committerMark Otto <[email protected]>2017-03-05 12:25:41 -0800
commitc6fdac94154c4493d422e1441a5e52219b976219 (patch)
tree2673eee349449728c0762718e2fc985e965d7b07 /docs
parent4778190d78faab6d19486292e2e73cc418c663f3 (diff)
downloadbootstrap-c6fdac94154c4493d422e1441a5e52219b976219.tar.xz
bootstrap-c6fdac94154c4493d422e1441a5e52219b976219.zip
update instances of old classes in the docs
Diffstat (limited to 'docs')
-rw-r--r--docs/_includes/nav-docs.html2
-rw-r--r--docs/_includes/nav-home.html2
-rw-r--r--docs/examples/dashboard/index.html4
-rw-r--r--docs/examples/grid/index.html2
-rw-r--r--docs/examples/offcanvas/index.html2
-rw-r--r--docs/layout/grid.md4
6 files changed, 8 insertions, 8 deletions
diff --git a/docs/_includes/nav-docs.html b/docs/_includes/nav-docs.html
index 94d46537d..89ca747a9 100644
--- a/docs/_includes/nav-docs.html
+++ b/docs/_includes/nav-docs.html
@@ -1,4 +1,4 @@
-<form class="bd-search hidden-sm-down">
+<form class="bd-search d-none d-sm-block">
<input type="search" class="form-control" id="search-input" placeholder="Search..." aria-label="Search for..." autocomplete="off">
<div class="dropdown-menu bd-search-results" id="search-results"></div>
</form>
diff --git a/docs/_includes/nav-home.html b/docs/_includes/nav-home.html
index 3ba8520e0..513a34bdc 100644
--- a/docs/_includes/nav-home.html
+++ b/docs/_includes/nav-home.html
@@ -25,7 +25,7 @@
</nav>
{% endcomment %}
- <div class="d-flex justify-content-between hidden-lg-up">
+ <div class="d-flex justify-content-between d-lg-none">
<a class="navbar-brand" href="{{ site.baseurl }}/">
Bootstrap
</a>
diff --git a/docs/examples/dashboard/index.html b/docs/examples/dashboard/index.html
index b346926c7..671675c9f 100644
--- a/docs/examples/dashboard/index.html
+++ b/docs/examples/dashboard/index.html
@@ -18,7 +18,7 @@
<body>
<nav class="navbar navbar-toggleable-md navbar-inverse fixed-top bg-inverse">
- <button class="navbar-toggler navbar-toggler-right hidden-lg-up" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
+ <button class="navbar-toggler navbar-toggler-right d-lg-none" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">Dashboard</a>
@@ -47,7 +47,7 @@
<div class="container-fluid">
<div class="row">
- <nav class="col-sm-3 col-md-2 hidden-xs-down bg-faded sidebar">
+ <nav class="col-sm-3 col-md-2 d-none d-sm-block bg-faded sidebar">
<ul class="nav nav-pills flex-column">
<li class="nav-item">
<a class="nav-link active" href="#">Overview <span class="sr-only">(current)</span></a>
diff --git a/docs/examples/grid/index.html b/docs/examples/grid/index.html
index 4779ebcea..783eee35d 100644
--- a/docs/examples/grid/index.html
+++ b/docs/examples/grid/index.html
@@ -143,7 +143,7 @@
<div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
<!-- Add the extra clearfix for only the required viewport -->
- <div class="clearfix hidden-sm-up"></div>
+ <div class="clearfix d-sm-none"></div>
<div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
<div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
diff --git a/docs/examples/offcanvas/index.html b/docs/examples/offcanvas/index.html
index e5da0f6a0..24b161ed5 100644
--- a/docs/examples/offcanvas/index.html
+++ b/docs/examples/offcanvas/index.html
@@ -56,7 +56,7 @@
<div class="row row-offcanvas row-offcanvas-right">
<div class="col-12 col-md-9">
- <p class="float-right hidden-md-up">
+ <p class="float-right d-md-none">
<button type="button" class="btn btn-primary btn-sm" data-toggle="offcanvas">Toggle nav</button>
</p>
<div class="jumbotron">
diff --git a/docs/layout/grid.md b/docs/layout/grid.md
index 31d1f9a81..738eafe62 100644
--- a/docs/layout/grid.md
+++ b/docs/layout/grid.md
@@ -471,7 +471,7 @@ If more than 12 columns are placed within a single row, each group of extra colu
### Column resets
-With the handful of grid tiers available, you're bound to run into issues where, at certain breakpoints, your columns don't clear quite right as one is taller than the other. To fix that, use a combination of a `.clearfix` and our [responsive utility classes]({{ site.baseurl }}/layout/responsive-utilities/).
+With the handful of grid tiers available, you're bound to run into issues where, at certain breakpoints, your columns don't clear quite right as one is taller than the other. To fix that, use a combination of a `.clearfix` and our [responsive display utilities]({{ site.baseurl }}/utilities/display/).
<div class="bd-example-row">
{% example html %}
@@ -480,7 +480,7 @@ With the handful of grid tiers available, you're bound to run into issues where,
<div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
<!-- Add the extra clearfix for only the required viewport -->
- <div class="clearfix hidden-sm-up"></div>
+ <div class="clearfix d-none d-sm-block"></div>
<div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
<div class="col-6 col-sm-3">.col-6 .col-sm-3</div>