diff options
| author | Mark Otto <[email protected]> | 2013-03-16 16:17:32 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-16 16:17:32 -0700 |
| commit | 68dfd322f42d7891cc6e41bce99bfb6cd89e1834 (patch) | |
| tree | 615eb913996c5512292e50ff19cee5cf02a2342c | |
| parent | fe2658ed6154b7b2be71f6582671ee13ebb59dc5 (diff) | |
| download | bootstrap-68dfd322f42d7891cc6e41bce99bfb6cd89e1834.tar.xz bootstrap-68dfd322f42d7891cc6e41bce99bfb6cd89e1834.zip | |
fixes #7140: hide navbar toggle in print
| -rw-r--r-- | docs/assets/css/bootstrap.css | 3 | ||||
| -rw-r--r-- | less/print.less | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 469d946b9..cffcb1bab 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -263,6 +263,9 @@ table { h3 { page-break-after: avoid; } + .navbar-toggle { + display: none; + } } * { diff --git a/less/print.less b/less/print.less index c7e78e234..db2749206 100644 --- a/less/print.less +++ b/less/print.less @@ -66,4 +66,9 @@ h3 { page-break-after: avoid; } + + // Bootstrap components + .navbar-toggle { + display: none; + } } |
