Commit f8dde60e authored by Andrew Gerrand's avatar Andrew Gerrand

doc: don't wrap package names in directory listing

Fixes #3522.

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/6063054
parent eea5a432
...@@ -108,7 +108,9 @@ table.dir td { ...@@ -108,7 +108,9 @@ table.dir td {
word-wrap: break-word; word-wrap: break-word;
vertical-align: top; vertical-align: top;
} }
div#page.wide table.dir td.name {
white-space: nowrap;
}
.alert { .alert {
color: #AA0000; color: #AA0000;
} }
...@@ -388,4 +390,3 @@ img.gopher { ...@@ -388,4 +390,3 @@ img.gopher {
margin-bottom: -120px; margin-bottom: -120px;
} }
h2 { clear: right; } h2 { clear: right; }
...@@ -192,14 +192,14 @@ ...@@ -192,14 +192,14 @@
{{if $.DirFlat}} {{if $.DirFlat}}
{{if .HasPkg}} {{if .HasPkg}}
<tr> <tr>
<td><a href="{{html .Path}}">{{html .Path}}</a></td> <td class="name"><a href="{{html .Path}}">{{html .Path}}</a></td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td> <td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td style="width: auto">{{html .Synopsis}}</td> <td style="width: auto">{{html .Synopsis}}</td>
</tr> </tr>
{{end}} {{end}}
{{else}} {{else}}
<tr> <tr>
<td>{{repeat `&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;` .Depth}}<a href="{{html .Path}}">{{html .Name}}</a></td> <td class="name">{{repeat `&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;` .Depth}}<a href="{{html .Path}}">{{html .Name}}</a></td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td> <td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td style="width: auto">{{html .Synopsis}}</td> <td style="width: auto">{{html .Synopsis}}</td>
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment