From: Andrew Gerrand Date: Thu, 13 Sep 2012 01:14:20 +0000 (+1000) Subject: undo CL 6493071 / 56c7453d488f X-Git-Tag: go1.1rc2~2466 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e7d7ea21d4f0bcb9b90921f4a2d694657cbe4fff;p=gostls13.git undo CL 6493071 / 56c7453d488f This change messes with anchor links. It obscures the item being linked to. I don't see a way around it. Undoing for now. Fixes #4071. ««« original CL description doc css: topbar sticks to the top of large windows. Rationale: for large screens, the convenience of not having to scroll to the top of the page to do a search outweighs having less vertical space. Tested with Chrome, Firefox, Safari with various window and text sizes. R=adg CC=gobot, golang-dev https://golang.org/cl/6493071 Committer: Andrew Gerrand »»» R=golang-dev, r, dsymonds CC=golang-dev https://golang.org/cl/6488121 --- diff --git a/doc/style.css b/doc/style.css index cf1c6d5aa9..a0c6320987 100644 --- a/doc/style.css +++ b/doc/style.css @@ -132,24 +132,6 @@ div#topbar { height: 64px; } -/* always show topbar for large screens */ -@media screen and (min-width: 130ex) and (min-height: 900px) { - /* 130ex -> wide enough so that title isn't below buttons */ - - div#topbar { - position: fixed; - z-index: 1; - top: 0; - width: 100%; - height: 63px; - border-bottom: 1px solid #B0BBC5; - } - - div#page { - margin-top: 84px; /* 64+20 to match topbar+H1 */ - } -} - body { text-align: center; }