Skip to content
Snippets Groups Projects
Commit 8782b43e authored by Dries Buytaert's avatar Dries Buytaert
Browse files

Issue #1855208 by bryanbraun, jessebeach: Added Toolbar tray needs to fix to...

Issue #1855208 by bryanbraun, jessebeach: Added Toolbar tray needs to fix to top of screen on scroll.
parent 1a9949d5
No related merge requests found
......@@ -84,6 +84,10 @@ html.js .toolbar {
*/
.js .toolbar .tray {
display: none;
position: fixed;
}
/* Make vertical toolbar tray scroll with page for touch devices. */
.touch .toolbar .tray {
position: absolute;
}
.toolbar .tray {
......@@ -115,6 +119,8 @@ html.js .toolbar {
.toolbar .vertical > .lining:before {
left: -100%; /* LTR */
min-height: 100%;
overflow-x: hidden;
overflow-y: auto;
position: absolute;
width: 100%;
}
......@@ -141,7 +147,15 @@ html.js .toolbar {
}
.toolbar .vertical.active,
.toolbar .vertical.active > .lining {
bottom: 0;
left: 0; /* LTR */
top: 0;
}
/* Make vertical toolbar tray scroll with page for touch devices. */
.touch .toolbar .vertical.active,
.touch .toolbar .vertical.active > .lining {
bottom: auto;
top: auto;
}
.toolbar .horizontal .menu li ul {
display: none;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment