mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-22 23:24:43 +00:00
unit tests and api documentation coming next, but for the most part, the API is the same as before.
37 lines
No EOL
668 B
CSS
37 lines
No EOL
668 B
CSS
/* fixed page header & footer configuration */
|
|
.ui-header,
|
|
.ui-footer {
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
.ui-header-fixed,
|
|
.ui-footer-fixed {
|
|
left: 0;
|
|
right: 0;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
-webkit-transform: translateZ(0); /* Force header/footer rendering to go through the same rendering pipeline as native page scrolling. */
|
|
}
|
|
.ui-header-fixed {
|
|
top: 0;
|
|
}
|
|
.ui-footer-fixed {
|
|
bottom: 0;
|
|
}
|
|
.ui-header-fullscreen,
|
|
.ui-footer-fullscreen {
|
|
opacity: .9;
|
|
}
|
|
.ui-page-header-fixed {
|
|
padding-top: 2.5em;
|
|
}
|
|
.ui-page-footer-fixed {
|
|
padding-bottom: 3em;
|
|
}
|
|
.ui-page-fullscreen .ui-content {
|
|
padding: 0;
|
|
}
|
|
.ui-fixed-hidden,
|
|
.ui-footer-duplicate {
|
|
display: none;
|
|
} |