| 2108 |
mathias |
1 |
/*
|
|
|
2 |
* Ext JS Library 2.0.2
|
|
|
3 |
* Copyright(c) 2006-2008, Ext JS, LLC.
|
|
|
4 |
* licensing@extjs.com
|
|
|
5 |
*
|
|
|
6 |
* http://extjs.com/license
|
|
|
7 |
*/
|
|
|
8 |
|
|
|
9 |
.x-tip{
|
|
|
10 |
position: absolute;
|
|
|
11 |
top: 0;
|
|
|
12 |
left:0;
|
|
|
13 |
visibility: hidden;
|
|
|
14 |
z-index: 20000;
|
|
|
15 |
border:0 none;
|
|
|
16 |
}
|
|
|
17 |
.x-tip .x-tip-close{
|
|
|
18 |
background-image: url(../images/default/qtip/close.gif);
|
|
|
19 |
height: 15px;
|
|
|
20 |
float:right;
|
|
|
21 |
width: 15px;
|
|
|
22 |
margin:0 0 2px 2px;
|
|
|
23 |
cursor:pointer;
|
|
|
24 |
display:none;
|
|
|
25 |
}
|
|
|
26 |
.x-tip .x-tip-tc {
|
|
|
27 |
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -62px;
|
|
|
28 |
padding-top:3px;
|
|
|
29 |
overflow:hidden;
|
|
|
30 |
zoom:1;
|
|
|
31 |
}
|
|
|
32 |
.x-tip .x-tip-tl {
|
|
|
33 |
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 0;
|
|
|
34 |
padding-left:6px;
|
|
|
35 |
overflow:hidden;
|
|
|
36 |
zoom:1;
|
|
|
37 |
}
|
|
|
38 |
.x-tip .x-tip-tr {
|
|
|
39 |
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right 0;
|
|
|
40 |
padding-right:6px;
|
|
|
41 |
overflow:hidden;
|
|
|
42 |
zoom:1;
|
|
|
43 |
}
|
|
|
44 |
.x-tip .x-tip-bc {
|
|
|
45 |
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -121px;
|
|
|
46 |
height:3px;
|
|
|
47 |
overflow:hidden;
|
|
|
48 |
}
|
|
|
49 |
.x-tip .x-tip-bl {
|
|
|
50 |
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -59px;
|
|
|
51 |
padding-left:6px;
|
|
|
52 |
zoom:1;
|
|
|
53 |
}
|
|
|
54 |
.x-tip .x-tip-br {
|
|
|
55 |
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -59px;
|
|
|
56 |
padding-right:6px;
|
|
|
57 |
zoom:1;
|
|
|
58 |
}
|
|
|
59 |
.x-tip .x-tip-mc {
|
|
|
60 |
border:0 none;
|
|
|
61 |
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
|
|
62 |
}
|
|
|
63 |
.x-tip .x-tip-ml {
|
|
|
64 |
background: #fff url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -124px;
|
|
|
65 |
padding-left:6px;
|
|
|
66 |
zoom:1;
|
|
|
67 |
}
|
|
|
68 |
.x-tip .x-tip-mr {
|
|
|
69 |
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -124px;
|
|
|
70 |
padding-right:6px;
|
|
|
71 |
zoom:1;
|
|
|
72 |
}
|
|
|
73 |
.ext-ie .x-tip .x-tip-header,.ext-ie .x-tip .x-tip-tc {
|
|
|
74 |
font-size:0;
|
|
|
75 |
line-height:0;
|
|
|
76 |
}
|
|
|
77 |
.x-tip .x-tip-header-text {
|
|
|
78 |
font: bold 11px tahoma,arial,helvetica,sans-serif;
|
|
|
79 |
padding:0;
|
|
|
80 |
margin:0 0 2px 0;
|
|
|
81 |
color:#444;
|
|
|
82 |
}
|
|
|
83 |
.x-tip .x-tip-body {
|
|
|
84 |
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
|
|
85 |
margin:0 !important;
|
|
|
86 |
line-height:14px;
|
|
|
87 |
color:#444;
|
|
|
88 |
padding:0;
|
|
|
89 |
}
|
|
|
90 |
|
|
|
91 |
.x-tip .x-tip-body .loading-indicator {
|
|
|
92 |
margin:0;
|
|
|
93 |
}
|
|
|
94 |
|
|
|
95 |
.x-tip-draggable .x-tip-header,.x-tip-draggable .x-tip-header-text {
|
|
|
96 |
cursor:move;
|
|
|
97 |
}
|
|
|
98 |
|
|
|
99 |
.x-form-invalid-tip {
|
|
|
100 |
}
|
|
|
101 |
|
|
|
102 |
.x-form-invalid-tip .x-tip-tc {
|
|
|
103 |
background: url(../images/default/form/error-tip-corners.gif) repeat-x 0 -12px;
|
|
|
104 |
padding-top:6px;
|
|
|
105 |
}
|
|
|
106 |
.x-form-invalid-tip .x-tip-tl {
|
|
|
107 |
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
|
108 |
}
|
|
|
109 |
.x-form-invalid-tip .x-tip-tr {
|
|
|
110 |
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
|
111 |
}
|
|
|
112 |
.x-form-invalid-tip .x-tip-bc {
|
|
|
113 |
background: url(../images/default/form/error-tip-corners.gif) repeat-x 0 -18px;
|
|
|
114 |
height:6px;
|
|
|
115 |
}
|
|
|
116 |
.x-form-invalid-tip .x-tip-bl {
|
|
|
117 |
background: url(../images/default/form/error-tip-corners.gif) no-repeat 0 -6px;
|
|
|
118 |
}
|
|
|
119 |
.x-form-invalid-tip .x-tip-br {
|
|
|
120 |
background: url(../images/default/form/error-tip-corners.gif) no-repeat right -6px;
|
|
|
121 |
}
|
|
|
122 |
.x-form-invalid-tip .x-tip-ml {
|
|
|
123 |
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
|
124 |
}
|
|
|
125 |
.x-form-invalid-tip .x-tip-mr {
|
|
|
126 |
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
|
127 |
}
|
|
|
128 |
.x-form-invalid-tip .x-tip-body {
|
|
|
129 |
padding:2px;
|
|
|
130 |
}
|
|
|
131 |
.x-form-invalid-tip .x-tip-body {
|
|
|
132 |
padding-left:24px;
|
|
|
133 |
background:transparent url(../images/default/form/exclamation.gif) no-repeat 2px 2px;
|
|
|
134 |
}
|