JQM Navigation : remove page min-height
[platform/framework/web/web-ui-fw.git] / src / themes / tizen / common / jquery.mobile.core.less
1 /*
2 * jQuery Mobile Framework
3 * Copyright (c) jQuery Project
4 * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
5 */
6
7 /*** less definitions ***/
8 @import "config.less";
9 /************************/
10
11
12 /* some unsets - more probably needed */
13 .ui-mobile, .ui-mobile body { height: 100%; font-size: @font_size_default; }
14 .ui-mobile fieldset, .ui-page { padding: 0; margin: 0; }
15 .ui-mobile a img, .ui-mobile fieldset { border: 0; }
16
17 /* responsive page widths */
18 .ui-mobile-viewport {  margin: 0; overflow-x: hidden; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
19
20 /* "page" containers - full-screen views, one should always be in view post-pageload */
21 .ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; position: absolute; display: none; border: 0; }
22 .ui-mobile .ui-page-active { display: block; overflow: visible; }
23
24 /* on ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */
25 .ui-page { outline: none; }
26
27 .ui-mobile, .ui-mobile .ui-page {
28         background:     @color_bg;
29         color                   :       @color_text;
30 }
31
32 /* native overflow scrolling */
33 .ui-page.ui-mobile-touch-overflow,
34 .ui-mobile-touch-overflow.ui-native-fixed .ui-content {
35         overflow: auto;
36         height: 100%;
37         -webkit-overflow-scrolling: touch;
38         -moz-overflow-scrolling: touch;
39         -o-overflow-scrolling: touch;
40         -ms-overflow-scrolling: touch;
41         overflow-scrolling: touch;
42 }
43 .ui-page.ui-mobile-touch-overflow,
44 .ui-page.ui-mobile-touch-overflow * {
45         /* some level of transform keeps elements from blinking out of visibility on iOS */
46         .LESStransform(rotateY(0));
47 }
48 .ui-page.ui-mobile-pre-transition {
49         display: block;
50 }
51
52 /* loading screen */
53 .ui-loading .ui-mobile-viewport { overflow: hidden !important; }
54 .ui-loading .ui-loader { display: block; }
55 .ui-loading .ui-page { overflow: hidden;  }
56 .ui-loader { display: none; position: absolute; opacity: .85; z-index: @z_base_loader; left: 50%; width: 200px; margin-left: -130px; margin-top: -35px; padding: 10px 30px; }
57 .ui-loader h1 { font-size: 32 * @unit_base; text-align: center; }
58 .ui-loader .ui-icon { position: static; display: block; opacity: .9; margin: 0 auto; width: 35px; height: 35px; background-color: transparent; }
59
60 .ui-blocker { width:100%; height:100%; z-index:@z_base_maximum; }
61
62 /*fouc*/
63 .ui-mobile-rendering > * { visibility: hidden; }
64
65 /*headers, content panels*/
66 .ui-bar, .ui-body { position: relative; padding: .4em 15px;  overflow: hidden; display: block;  clear:both;  }
67 .ui-bar { font-size: 16px; margin: 0; }
68 .ui-bar h1, .ui-bar h2, .ui-bar h3, .ui-bar h4, .ui-bar h5, .ui-bar h6 { margin: 0; padding: 0; font-size: 16px; display: inline-block; }
69
70 .ui-header, .ui-footer { display: block; }
71 .ui-page .ui-header, .ui-page .ui-footer { 
72         position : fixed; /*position: relative;*/ 
73         z-index : @z_base_header_footer;
74 }
75 /* Title button packing order */
76 .ui-header .ui-btn-left {
77         top: .4em;
78         float: left;
79 }
80 .ui-header .ui-btn-right {
81         float: right;
82         top: .4em;
83 }
84 .ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 90px .8em;  padding: 0;  text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; }
85
86 /*content area*/
87 .ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
88 .ui-page-fullscreen .ui-content { padding:0; }
89
90 /* native fixed headers and footers */
91 .ui-mobile-touch-overflow.ui-page.ui-native-fixed,
92 .ui-mobile-touch-overflow.ui-page.ui-native-fullscreen {
93         overflow: visible;
94 }
95 .ui-mobile-touch-overflow.ui-native-fixed .ui-header,
96 .ui-mobile-touch-overflow.ui-native-fixed .ui-footer {
97         position: fixed;
98         left: 0;
99         right: 0;
100         top: 0;
101         z-index: 200;
102 }
103 .ui-mobile-touch-overflow.ui-page.ui-native-fixed .ui-footer {
104         top: auto;
105         bottom: 0;
106 }
107 .ui-mobile-touch-overflow.ui-native-fixed .ui-content {
108         padding-top: 2.5em;
109         padding-bottom: 3em;
110         top: 0;
111         bottom: 0;
112         height: auto;
113         position: absolute;
114 }
115 .ui-mobile-touch-overflow.ui-native-fullscreen .ui-content {
116         padding-top: 0;
117         padding-bottom: 0;
118 }
119 .ui-mobile-touch-overflow.ui-native-fullscreen .ui-header,
120 .ui-mobile-touch-overflow.ui-native-fullscreen .ui-footer {
121         opacity: .9;
122 }
123 .ui-native-bars-hidden {
124         display: none;
125 }
126
127 /* icons sizing */
128 .ui-icon { width: 18px; height: 18px; }
129
130 /* fullscreen class on ui-content div */
131 .ui-fullscreen {  }
132 .ui-fullscreen img { max-width: 100%; }
133
134 /* non-js content hiding */
135 .ui-nojs { position: absolute; left: -9999px; }
136