Clearer when archive links are N/A.

Conflicts:
	src/General/Header.coffee
	src/General/css/style.css
This commit is contained in:
milky 2014-02-09 07:00:15 +11:00 committed by ccd0
parent 5e403217ae
commit 555f3c9867
2 changed files with 9 additions and 2 deletions

View File

@ -214,8 +214,12 @@ Header =
a.href = CatalogLinks[m[1]] boardID
$.addClass a, 'catalog' if m[1] is 'catalog'
if /-archive/.test(t) and href = Redirect.to 'board', {boardID}
a.href = href
if /-archive/.test(t)
if href = Redirect.to 'board', {boardID}
a.href = href
else
$.addClass a, 'inactive'
a.removeAttribute 'href'
$.addClass a, 'navSmall' if boardID is '@'
return a

View File

@ -235,6 +235,9 @@ hr + div.center:not(.ad-cnt):not(.topad):not(.middlead):not(.bottomad) {
.fixed.bottom-header #header-bar #scroll-marker {
bottom: 100%;
}
#header-bar a.inactive {
color: inherit !important;
}
#header-bar a:not(.entry):not(.close) {
text-decoration: none;
padding: 1px;