1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*!
* Ext JS Library 3.4.0
* Copyright(c) 2006-2011 Sencha Inc.
* licensing@sencha.com
* http://www.sencha.com/license
*/
.x-bubble-ml {
padding-left:4px;
background:transparent url(../images/bubble-lr.gif) repeat-y 0 0;
zoom:1;
}
.x-bubble-mr {
padding-right:4px;
background:transparent url(../images/bubble-lr.gif) repeat-y right 0;
zoom:1;
}
.x-bubble-mc {
background:#fff;
overflow:hidden;
}
.x-bubble-tl {
background: #fff url(../images/bubble-cs.gif) no-repeat 0 0;
padding-left:11px;
zoom:1;
}
.x-bubble-tr {
background: transparent url(../images/bubble-cs.gif) no-repeat right top;
padding-right:11px;
zoom:1;
}
.x-bubble-tc {
height: 9px;
overflow: hidden;
padding-top: 4px;
background: #fff url(../images/bubble-tb.gif) repeat-x 0 0;
}
.x-bubble-bl {
background: #fff url(../images/bubble-cs.gif) no-repeat 0 bottom;
padding-left:11px;
zoom:1;
}
.x-bubble-br {
background: transparent url(../images/bubble-cs.gif) no-repeat right bottom;
padding-right:11px;
zoom:1;
}
.x-bubble-bc {
height:11px;
font-size:1px;
line-height:1px;
overflow:hidden;
background: #fff url(../images/bubble-tb.gif) repeat-x 0 bottom;
}
.x-bubble-bwrap {
background: #fff url(../images/bubble-tb.gif) repeat-x 0 0;
overflow:hidden;
zoom:1;
}
.x-bubble-body {
background: #fff;
overflow:hidden;
}
|