1
0
mirror of https://github.com/golang/go synced 2024-11-21 23:24:41 -07:00

godoc: bring back highlighting, selections, and alerts

R=adg, rsc
CC=golang-dev
https://golang.org/cl/5695054
This commit is contained in:
Robert Griesemer 2012-02-23 14:54:10 -08:00
parent c1139549bc
commit 5b30306fa8

View File

@ -13,6 +13,27 @@ pre {
pre .comment { pre .comment {
color: #375EAB; color: #375EAB;
} }
pre .highlight {
background: #FFFF00;
}
pre .highlight-comment {
background: #FFFF00;
color: #375EAB;
}
pre .selection {
background: #FF9632;
}
pre .selection-comment {
background: #FF9632;
color: #375EAB;
}
pre .selection-highlight {
background: #FFFF00;
}
pre .selection-highlight-comment {
background: #FFFF00;
color: #375EAB;
}
pre .ln { pre .ln {
color: #999; color: #999;
} }
@ -88,6 +109,10 @@ table.dir td {
vertical-align: top; vertical-align: top;
} }
.alert {
color: #FF0000;
}
#heading { #heading {
float: left; float: left;
margin: 0 0 10px 0; margin: 0 0 10px 0;