Commit 62b210b5 authored by Matthew Holt's avatar Matthew Holt

browse: Minor changes to improve icon positioning in template

Also make sure column header cells don't wrap
parent 1af7865e
......@@ -182,6 +182,7 @@ th {
padding-top: 15px;
padding-bottom: 15px;
font-size: 16px;
white-space: nowrap;
}
th a {
......@@ -198,8 +199,6 @@ td {
td:first-child {
width: 50%;
overflow-wrap: break-word;
word-break: break-word;
}
th:last-child,
......@@ -207,6 +206,16 @@ td:last-child {
text-align: right;
}
td:first-child svg {
position: absolute;
}
td .name {
margin-left: 1.75em;
word-break: break-all;
overflow-wrap: break-word;
}
footer {
padding: 40px 20px;
font-size: 12px;
......@@ -335,13 +344,13 @@ footer {
{{range .Items}}
<tr>
<td>
<a href="{{.URL}}" class="name">
<a href="{{.URL}}">
{{if .IsDir}}
<svg width="1.5em" height="1em" version="1.1" viewBox="0 0 35.678803 28.527945"><use xlink:href="#folder"></use></svg>
{{else}}
<svg width="1.5em" height="1em" version="1.1" viewBox="0 0 26.604381 29.144726"><use xlink:href="#file"></use></svg>
{{end}}
{{.Name}}
<span class="name">{{.Name}}</span>
</a>
</td>
<td>{{.HumanSize}}</td>
......
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