2.0_beta sync to rsa
[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%; min-height: 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         -webkit-transform: 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 /*fouc*/
61 .ui-mobile-rendering > * { visibility: hidden; }
62
63 /*headers, content panels*/
64 .ui-bar, .ui-body { position: relative; padding: .4em 15px;  overflow: hidden; display: block;  clear:both;  }
65 .ui-bar { font-size: 16px; margin: 0; }
66 .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; }
67
68 .ui-header, .ui-footer { display: block; }
69 .ui-page .ui-header, .ui-page .ui-footer { 
70         position : fixed; /*position: relative;*/ 
71         z-index : @z_base_header_footer;
72 }
73 /* Title button packing order */
74 .ui-header .ui-btn-left {
75         top: .4em;
76         float: left;
77 }
78 .ui-header .ui-btn-right {
79         float: right;
80         top: .4em;
81 }
82 .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; }
83
84 /*content area*/
85 .ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
86 .ui-page-fullscreen .ui-content { padding:0; }
87
88 /* native fixed headers and footers */
89 .ui-mobile-touch-overflow.ui-page.ui-native-fixed,
90 .ui-mobile-touch-overflow.ui-page.ui-native-fullscreen {
91         overflow: visible;
92 }
93 .ui-mobile-touch-overflow.ui-native-fixed .ui-header,
94 .ui-mobile-touch-overflow.ui-native-fixed .ui-footer {
95         position: fixed;
96         left: 0;
97         right: 0;
98         top: 0;
99         z-index: 200;
100 }
101 .ui-mobile-touch-overflow.ui-page.ui-native-fixed .ui-footer {
102         top: auto;
103         bottom: 0;
104 }
105 .ui-mobile-touch-overflow.ui-native-fixed .ui-content {
106         padding-top: 2.5em;
107         padding-bottom: 3em;
108         top: 0;
109         bottom: 0;
110         height: auto;
111         position: absolute;
112 }
113 .ui-mobile-touch-overflow.ui-native-fullscreen .ui-content {
114         padding-top: 0;
115         padding-bottom: 0;
116 }
117 .ui-mobile-touch-overflow.ui-native-fullscreen .ui-header,
118 .ui-mobile-touch-overflow.ui-native-fullscreen .ui-footer {
119         opacity: .9;
120 }
121 .ui-native-bars-hidden {
122         display: none;
123 }
124
125 /* icons sizing */
126 .ui-icon { width: 18px; height: 18px; }
127
128 /* fullscreen class on ui-content div */
129 .ui-fullscreen {  }
130 .ui-fullscreen img { max-width: 100%; }
131
132 /* non-js content hiding */
133 .ui-nojs { position: absolute; left: -9999px; }