• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/APP-IPK/AiCloud-ipk/opt/etc/aicloud_UI/css/
1/* jqModal base Styling courtesy of;
2	Brice Burgess <bhb@iceburg.net> */
3
4/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
5	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
6
7.jqmWindow {
8  display: none;
9  position: fixed;
10  background: #888888;
11	padding-left:0px;
12	padding-right:2px;
13}
14
15.jqmOverlay { 
16	background-color: #FFF; 
17}
18	
19/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) 
20
21* iframe.jqm {
22  position: absolute;
23  top: 0;
24  left: 0;
25  z-index: -1;
26  width: expression(this.parentNode.offsetWidth+'px');
27  height: expression(this.parentNode.offsetHeight+'px');
28}*/
29
30/* Fixed posistioning emulation for IE6
31     Star selector used to hide definition from browsers other than IE6
32     For valid CSS, use a conditional include instead */
33* html .jqmWindow {
34  position: absolute;
35  top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');  
36}
37
38button.jqmClose {
39	background: none;
40	border: 0px solid #EAEAEB;
41	color: #000;
42	clear: right;
43	float: right;
44	padding: 0;
45	margin-top:5px;
46	margin-left:5px;
47	cursor: pointer;
48	font-size: 0.9em;
49	letter-spacing: 1px;
50}
51
52button.jqmClose:hover, 
53button.jqmClose:active {
54	color: #FFF;
55	border: 0px solid #FFF;
56}
57
58#jqmTitle {
59	background: transparent;
60	color: #ffffff;
61	text-transform: capitalize;
62	height: 15px;
63	padding: 5px 5px 0px 5px;
64	vertical-align: middle;
65	font: bold 80% "������",Arial,sans-serif;
66	/*white-space: nowrap;*/
67}
68
69#jqmMsg {
70	background: #FF6666;
71	color: #ffffff;
72	text-transform: capitalize;
73	height: 15px;
74	padding: 5px 5px 0px 5px;
75	vertical-align: middle;
76	font: bold 80% "������",Arial,sans-serif;
77	display: none;
78	/*white-space: nowrap;*/
79}
80
81#jqmContent {
82	width: 100%;
83	height: 100%;
84	display: block;
85	clear: both;
86	margin:0px;
87	margin-top:0px;
88	background: #e8e8e8;
89	border: 1px solid #888888;
90}