diff --git a/docs/_includes/nav-home.html b/docs/_includes/nav-home.html index 0436e2dbe7..a5a3088c7b 100644 --- a/docs/_includes/nav-home.html +++ b/docs/_includes/nav-home.html @@ -27,9 +27,7 @@ - - ☰ - + Bootstrap diff --git a/docs/components/navbar.md b/docs/components/navbar.md index 98e48fa77a..10f445e8f0 100644 --- a/docs/components/navbar.md +++ b/docs/components/navbar.md @@ -241,9 +241,7 @@ Our collapse plugin allows you to use a `` or `` to toggle hidden con {% example html %} - - ☰ - + Collapsed content @@ -257,9 +255,7 @@ For more complex navbar patterns, like those used in Bootstrap v3, use the `.nav {% example html %} - - ☰ - + Responsive navbar diff --git a/docs/examples/album/index.html b/docs/examples/album/index.html index ccf8d035bf..b35c246a3d 100644 --- a/docs/examples/album/index.html +++ b/docs/examples/album/index.html @@ -37,9 +37,7 @@ - - ☰ - + Album diff --git a/docs/examples/dashboard/index.html b/docs/examples/dashboard/index.html index 5a80654ff2..6ddc6cf753 100644 --- a/docs/examples/dashboard/index.html +++ b/docs/examples/dashboard/index.html @@ -21,12 +21,7 @@ - - Toggle navigation - - - - + Project name diff --git a/docs/examples/navbar-top-fixed/index.html b/docs/examples/navbar-top-fixed/index.html index bda85c4092..7739b9e463 100644 --- a/docs/examples/navbar-top-fixed/index.html +++ b/docs/examples/navbar-top-fixed/index.html @@ -27,9 +27,7 @@ - - ☰ - + diff --git a/docs/examples/navbar-top/index.html b/docs/examples/navbar-top/index.html index 52c61098f8..b9dab943b0 100644 --- a/docs/examples/navbar-top/index.html +++ b/docs/examples/navbar-top/index.html @@ -26,9 +26,7 @@ - - ☰ - + diff --git a/docs/examples/navbar/index.html b/docs/examples/navbar/index.html index d0beae1275..f69139ee20 100644 --- a/docs/examples/navbar/index.html +++ b/docs/examples/navbar/index.html @@ -22,9 +22,7 @@ - - ☰ - + Navbar diff --git a/docs/examples/sticky-footer-navbar/index.html b/docs/examples/sticky-footer-navbar/index.html index aa8b8c5c84..efe9b4c64d 100644 --- a/docs/examples/sticky-footer-navbar/index.html +++ b/docs/examples/sticky-footer-navbar/index.html @@ -30,9 +30,7 @@ - - ☰ - + Sticky footer diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 881af0db65..353e6958e3 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -105,10 +105,16 @@ // Bootstrap JavaScript plugin. .navbar-toggler { + box-sizing: content-box; + width: 1em; + height: 1em; padding: .5rem .75rem; font-size: $font-size-lg; line-height: 1; - background: none; + background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Crect%20y%3D%222%22%20width%3D%2216%22%20height%3D%221%22%2F%3E%3Crect%20y%3D%227%22%20width%3D%2216%22%20height%3D%221%22%2F%3E%3Crect%20y%3D%2212%22%20width%3D%2216%22%20height%3D%221%22%2F%3E%3C%2Fsvg%3E) no-repeat 50% 50%; + background-clip: content-box; + background-origin: content-box; + background-size: 1em 1em; border: $border-width solid transparent; @include border-radius($btn-border-radius);