mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-15 11:51:02 +00:00
* applies data-themes appropriately to header,footer,page,and content roles * finds first link in header or footer, applies left button class * finds second link in header or footer, applies right button class * if no left button, a back button is auto added (this can be disabled through $.mobile.addBackBtn) * back buttons will not auto-add on the first page visited. * all headings h1-6 are given ui-title class for constent styling in header and footer * buttons in ui-bar,ui-header,ui-footer now all have consistent sizing and styling Fixes #109 Fixes #114 Fixes #28 Fixes #116
12 lines
855 B
CSS
12 lines
855 B
CSS
/*
|
|
* jQuery Mobile Framework
|
|
* Copyright (c) jQuery Project
|
|
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
|
*/
|
|
/* page header & footer configuration */
|
|
.ui-page .ui-header, .ui-page .ui-footer { position: relative; }
|
|
.ui-header, .ui-footer, .ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer { position: absolute; z-index: 1000; overflow: hidden; width: 100%; border-left-width: 0; border-right-width: 0; }
|
|
.ui-footer-duplicate, .ui-page-fullscreen .ui-fixed-inline { display: none; }
|
|
.ui-header .ui-btn-left { position: absolute; left: 10px; top: .4em; }
|
|
.ui-header .ui-title, .ui-footer .ui-title { text-align: center; font-size: 16px; display: block; margin: .6em 90px .8em; padding: 0; white-space: nowrap; overflow: hidden; }
|
|
.ui-header .ui-btn-right { position: absolute; right: 10px; top: .4em; }
|