Increase the Header's autohiding delay & transition time.

Increase the Header's autohiding toggle sensibility.
This commit is contained in:
Nicolas Stepien 2013-03-12 04:11:16 +01:00
parent 6542acc378
commit b36b9540d3
2 changed files with 7 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -119,8 +119,8 @@ a[href="javascript:;"] {
margin-bottom: -1em; margin-bottom: -1em;
-webkit-transform: translateY(-100%); -webkit-transform: translateY(-100%);
transform: translateY(-100%); transform: translateY(-100%);
-webkit-transition: all .75s .25s ease-in-out; -webkit-transition: all 2s 2s ease-in-out;
transition: all .75s .25s ease-in-out; transition: all 2s 2s ease-in-out;
} }
#toggle-header-bar { #toggle-header-bar {
cursor: n-resize; cursor: n-resize;
@ -130,6 +130,10 @@ a[href="javascript:;"] {
height: 10px; height: 10px;
position: absolute; position: absolute;
} }
#header-bar.autohide:not(:hover) #toggle-header-bar, #toggle-header-bar:hover {
bottom: -16px;
height: 18px;
}
#header-bar.autohide #toggle-header-bar { #header-bar.autohide #toggle-header-bar {
cursor: s-resize; cursor: s-resize;
} }