fix phantom space between dom elements; fix search box being split into two lines in some cases; add more padding in mobile layout
This commit is contained in:
parent
e078383e6d
commit
cd1e868daf
@ -296,15 +296,14 @@ func (this *ArchiveState) renderTemplateHead(w http.ResponseWriter) {
|
||||
<a style="display:none;" id="monthnext" accesskey="k" href="` + html.EscapeString(nextMonthLink) + `">
|
||||
|
||||
<a class="btn" href="` + pageBase + `/page-0">«</a>
|
||||
<a class="btn" id="pgprev" accesskey="h" title="Previous page (Alt+H)" href="` + pageBase + `/page-` + fmt.Sprintf("%d", previousPage) + `">‹</a>
|
||||
` + fmt.Sprintf("%d", this.page) + `
|
||||
<a class="btn" id="pgnext" accesskey="l" title="Next page (Alt+L)" href="` + pageBase + `/page-` + fmt.Sprintf("%d", nextPage) + `">›</a>
|
||||
<a class="btn" accesskey="h" title="Previous page (Alt+H)" href="` + pageBase + `/page-` + fmt.Sprintf("%d", previousPage) + `">‹</a>
|
||||
<span class="current-page">` + fmt.Sprintf("%d", this.page) + `</span>
|
||||
<a class="btn" accesskey="l" title="Next page (Alt+L)" href="` + pageBase + `/page-` + fmt.Sprintf("%d", nextPage) + `">›</a>
|
||||
<a class="btn" href="` + pageBase + `">»</a>
|
||||
`))
|
||||
}
|
||||
|
||||
w.Write([]byte(`
|
||||
<div class="pad"></div>
|
||||
</span>
|
||||
|
||||
<span class="area-search">
|
||||
|
@ -96,11 +96,18 @@ select {
|
||||
.nav {
|
||||
background: #DDD;
|
||||
box-shadow: 0px 4px 24px #CCC;
|
||||
|
||||
font-size:0; /* remove phantom spaces between elements */
|
||||
}
|
||||
.nav form {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.nav .btn, .nav .current-page, .nav select {
|
||||
font-size: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
.nav .btn {
|
||||
background: white;
|
||||
color:black;
|
||||
@ -211,7 +218,7 @@ select {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.nav, .nav select {
|
||||
.nav .btn, .nav .current-page, .nav select {
|
||||
font-size: 16px;
|
||||
line-height:16px;
|
||||
}
|
||||
@ -236,7 +243,9 @@ select {
|
||||
}
|
||||
|
||||
.area-search {
|
||||
display:block;
|
||||
float:none;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
#searchbox {
|
||||
|
Loading…
Reference in New Issue
Block a user