Rollup merge of #21597 - iKevinY:mobile-api-docs, r=cmr

This PR removes the `min-width` rule from `body` so that no horizontal scrolling is necessary on mobile, and also hides out-of-band information on mobile to create more room for the in-band information.
This commit is contained in:
Manish Goregaokar 2015-01-27 22:24:02 +05:30
commit 8418725b0d

View File

@ -64,7 +64,6 @@
body {
color: #333;
min-width: 500px;
font: 16px/1.4 "Source Serif Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
position: relative;
@ -592,6 +591,14 @@ pre.rust { position: relative; }
margin-left: 0px;
}
.content .in-band {
width: 100%;
}
.content .out-of-band {
display: none;
}
.toggle-wrapper > .collapse-toggle {
left: 0px;
}