diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index e4d53ed8be..3549d82ccb 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css index c327f7f070..f087b73730 100644 --- a/docs/assets/css/bootstrap-responsive.css +++ b/docs/assets/css/bootstrap-responsive.css @@ -141,9 +141,16 @@ } } @media (max-width: 767px) { + body { + padding-left: 20px; + padding-right: 20px; + } + .navbar-fixed-top { + margin-left: -20px; + margin-right: -20px; + } .container { width: auto; - padding: 0 20px; } .row-fluid { width: 100%; diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index a2d178eb4f..ef60ecf47a 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3002,6 +3002,11 @@ button.btn.btn-small, input[type="submit"].btn.btn-small { .pager .previous a { float: left; } +.pager .disabled a, .pager .disabled a:hover { + color: #999999; + background-color: #fff; + cursor: default; +} .modal-open .dropdown-menu { z-index: 2050; } diff --git a/docs/components.html b/docs/components.html index bb3d4c05c8..b4071a5a72 100644 --- a/docs/components.html +++ b/docs/components.html @@ -1208,6 +1208,8 @@

About pager

The pager component is a set of links for simple pagination implementations with light markup and even lighter styles. It's great for simple sites like blogs or magazines.

+

Optional disabled state

+

Pager links also use the general .disabled class from the pagination.

Default example

diff --git a/docs/templates/pages/components.mustache b/docs/templates/pages/components.mustache index 18b0f7ce47..f38969567f 100644 --- a/docs/templates/pages/components.mustache +++ b/docs/templates/pages/components.mustache @@ -1132,6 +1132,8 @@

{{_i}}About pager{{/i}}

{{_i}}The pager component is a set of links for simple pagination implementations with light markup and even lighter styles. It's great for simple sites like blogs or magazines.{{/i}}

+

{{_i}}Optional disabled state{{/i}}

+

{{_i}}Pager links also use the general .disabled class from the pagination.{{/i}}

{{_i}}Default example{{/i}}

diff --git a/less/responsive.less b/less/responsive.less index 7fa62cad9c..f321891e81 100644 --- a/less/responsive.less +++ b/less/responsive.less @@ -155,12 +155,22 @@ // -------------------------------------------------- @media (max-width: 767px) { + + // Padding to set content in a bit + body { + padding-left: 20px; + padding-right: 20px; + } + .navbar-fixed-top { + margin-left: -20px; + margin-right: -20px; + } + // GRID & CONTAINERS // ----------------- // Remove width from containers .container { width: auto; - padding: 0 20px; } // Fluid rows .row-fluid {