summaryrefslogtreecommitdiff
path: root/doc/style.css
AgeCommit message (Collapse)AuthorFilesLines
2012-06-14Imported Upstream version 1.0.2upstream/1.0.2Ondřej Surý1-0/+1
2012-05-02Imported Upstream version 1.0.1upstream/1.0.1Ondřej Surý1-2/+3
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-0/+391
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-282/+0
2010-04-27homepage: removed animation, use custom js instead of gdynamicfeedsAndrew Gerrand1-5/+3
R=rsc CC=golang-dev http://codereview.appspot.com/949043
2010-04-26godoc: add codewalk supportRuss Cox1-1/+7
R=adg, gri CC=golang-dev, r http://codereview.appspot.com/1008042
2010-03-30godoc: support for title and subtitle headers when serving .html docsRobert Griesemer1-0/+5
and use it to show version (date) of go spec Fixes issue 68. R=rsc CC=golang-dev, r http://codereview.appspot.com/848042
2010-03-20website: add Go Blog widget to frontpage,Andrew Gerrand1-1/+10
add Blog and Wiki links to sideba R=r, rsc, gri CC=golang-dev http://codereview.appspot.com/611042
2010-03-16godoc: initial support for showing popup informationRobert Griesemer1-0/+13
for identifiers in Go source code - at the moment just show identifier kind (var, func, etc.) and name (eventually should show declaration, type, etc.) - JavaScript parts by adg R=rsc CC=adg, golang-dev http://codereview.appspot.com/578042
2010-02-18godoc: path cleanups, fixed a race condition, initial support for a menu on ↵Robert Griesemer1-0/+13
pages R=rsc CC=adg, golang-dev http://codereview.appspot.com/215050
2009-12-01some godoc cleanup:Robert Griesemer1-0/+1
- simplified dealing with parse errors: no need to intersperse them in the source - improve visibility of highlighted identifiers by showing them in bold R=rsc http://codereview.appspot.com/163051
2009-11-09cleanup style:Robert Griesemer1-8/+4
- consistently remove all underbars from links - this removes need for noline style - removed unused info style R=r, rsc http://go/go-review/1025032
2009-11-08change highlight color from green to yellowRuss Cox1-2/+1
(fits better in the color scheme). eliminate background color on line numbers at bottom of search results, now that they are grouped. live at http://r45:3456/search?q=Reader R=r, gri http://go/go-review/1024030
2009-11-08mention license in install.html.Russ Cox1-0/+2
tighter nav list. R=r http://go/go-review/1024029
2009-11-08use grouping instead of colors to show non-global search hits:Robert Griesemer1-44/+5
- introduced a new run per file containing all spots belonging to the same kind (e.g. var decl, const decl, etc.) - more comments, better index.go file organization R=rsc http://go/go-review/1026028
2009-11-08- properly align package synopsesRobert Griesemer1-1/+0
(this was surprisingly hard to get right in HTML) - show modification times in source directory listings - various tweaks R=rsc http://go/go-review/1024024
2009-11-08make the visited color darker instead of lighterRob Pike1-1/+1
R=rsc CC=go-dev http://go/go-review/1025022
2009-11-07fix a few style nits; arrange the doc list inRuss Cox1-4/+3
an order we want people to read the docs. R=r CC=go-dev http://go/go-review/1025017
2009-11-07new style; live at http://r45:3456/Russ Cox1-11/+30
R=r CC=go-dev http://go/go-review/1026015
2009-11-05godoc: style update.Adam Langley1-4/+8
R=r, rsc CC=go-dev http://go/go-review/1017051
2009-11-03Update the styling of the godoc pages.Adam Langley1-3/+45
(root.html is just temporary. It'll need some better content.) R=r CC=go-dev http://go/go-review/1017019
2009-11-02- show recursive package directory structure in package pagesRobert Griesemer1-2/+9
- removed some underbars in section headings for better looks - various minor tweaks R=rsc http://go/go-review/1018026
2009-10-27godoc search bug fixes:Robert Griesemer1-0/+5
- sort by package name (instead of package path) for results with snippets - sort line numbers in results without snippets - properly characterize package clauses - experiment with a leaner look: no underlines for top-level godoc links in the left side bar Still using colors to distinguish results. Next step. R=rsc http://go/go-review/1015016
2009-10-27code search for godoc:Robert Griesemer1-1/+45
- added goroutine to automatically index in the background - added handler for search requests - added search box to top-level godoc template - added search.html template for the display of search results - changes to spec.go because of name conflicts - added extra styles to style.css (for shorter .html files) R=rsc http://go/go-review/1014011
2009-10-22go/printer:Robert Griesemer1-5/+30
- handle HTML tagging via (client-installable) Stylers go/doc: - basic styler support - some factoring - ready to contain the search code (but for now excluded) doc/style.css: - updated doc/go_spec.css: - cleanup: replace deprecated uses of <font> tag with <span> tag R=rsc DELTA=302 (160 added, 62 deleted, 80 changed) OCL=35973 CL=35996
2009-10-05add a little more saturation to the background of <pre> so it doesn't ↵Rob Pike1-1/+1
disappear on bright monitors. verified as acceptable on my calibrated home monitor. R=gri DELTA=1 (0 added, 0 deleted, 1 changed) OCL=35340 CL=35342
2009-09-23change code font to "monospace", which willRuss Cox1-4/+5
let the browser use the font the user has set up as the default fixed-width font, instead of forcing Courier. also set the size to 100%, which means 100% of the font size in the surrounding text. this looks a little better in the main body but much better when the code is in a heading (like Package unsafe). R=r DELTA=4 (1 added, 0 deleted, 3 changed) OCL=34947 CL=34947
2009-09-17A step towards "externalizing" some Go docs.Larry Hosken1-0/+134
+ style sheet: like code.google.com but less feature-ful + JS with table-of-contents generation + tweaked go_spec.html and go_mem.html to use new style+JS + static-HTML-ified a few other Go docs: + static HTML versions of some wiki pages (which I'll turn into links to these pages). A notable thing that is _not_ in this changelist: any change to the godoc tool or whatever thing generates http://go/godoc R=r APPROVED=r DELTA=2472 (2307 added, 113 deleted, 52 changed) OCL=34644 CL=34728