Add an option to hide navLink UI. #572

This commit is contained in:
Zixaphir 2014-02-16 04:37:12 -07:00
parent 7f69ba59fb
commit 57dab55dcb
4 changed files with 13 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -472,6 +472,10 @@ Config =
true true
'Adds an icon you can hover over to show the watcher, as opposed to having the watcher always visible.' 'Adds an icon you can hover over to show the watcher, as opposed to having the watcher always visible.'
] ]
'Hide Navlinks': [
false
'Hides the UI at the top of the page that allows you to navigate between pages, like "Return", "Catalog", "Bottom".'
]
Posts: Posts:
'Alternate Post Colors': [ 'Alternate Post Colors': [

View File

@ -2427,6 +2427,9 @@ article li {
.btn-wrap { .btn-wrap {
display: block; display: block;
} }
.hide-navlinks body > .navLinks {
display: none;
}
.navLinks > .btn-wrap:not(:first-of-type)::before { .navLinks > .btn-wrap:not(:first-of-type)::before {
content: ' - '; content: ' - ';
} }