Fix Header autohide hiding things it shouldn't.

This commit is contained in:
Zixaphir 2013-04-14 17:48:22 -07:00
parent 5c3ca1d76e
commit 4c922fb22d
8 changed files with 20 additions and 10 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -237,6 +237,10 @@ else "
display: block;
overflow: hidden;
width: 300px;
border: 1px solid;
}
.notification:not(:first-of-type) {
border-top: none;
}
.close {
float: right;

View File

@ -190,6 +190,7 @@ textarea.field:focus {
#themeConf,
#watcher,
#watcher:hover,
.notification,
.submenu,
a[style="cursor: pointer; float: right;"] ~ div[style^="width: 100%;"] > table {
background: #{theme["Dialog Background"]};

View File

@ -83,8 +83,10 @@ Header =
Header.setBarVisibility Conf['Header auto-hide']
$.sync 'Header auto-hide', Header.setBarVisibility
$.prepend d.body, $.id 'navtopright'
$.add fullBoardList, [nav.childNodes...]
$.add nav, [Header.menuButton, customBoardList, fullBoardList, Header.shortcuts, $('#navtopright', fullBoardList), Header.bar, Header.toggle]
$.add nav, [Header.menuButton, customBoardList, fullBoardList, Header.shortcuts, Header.bar, Header.toggle]
if Conf['Custom Board Navigation']
Header.generateBoardList Conf['boardnav']