added extjs2.2
@ -9,6 +9,9 @@ Ext.grid.AppinfTable = Ext.extend(Ext.grid.EditorGridPanel, {
|
||||
charThatStartedEdit: null,
|
||||
|
||||
origEditValue: null,
|
||||
|
||||
modifiedRecord: null,
|
||||
modifiedField: null,
|
||||
|
||||
// private
|
||||
initComponent : function(){
|
||||
@ -29,6 +32,41 @@ Ext.grid.AppinfTable = Ext.extend(Ext.grid.EditorGridPanel, {
|
||||
if (code != undefined && code != e.LEFT && code != e.RIGHT && code != e.UP && code != e.DOWN && code != e.ESC && code != e.ENTER
|
||||
&& code != e.TAB && code != e.SHIFT && code != e.PAGEUP && code != e.PAGEDOWN && code != e.HOME && code != e.F5 &&
|
||||
code != e.END && code != e.DELETE && code != e.CONTROL && code != e.BACKSPACE){
|
||||
if (code >= e.NUM_ZERO && code <= e.NUM_NINE)
|
||||
{
|
||||
switch(code){
|
||||
case e.NUM_ZERO:
|
||||
code = e.ZERO;
|
||||
break;
|
||||
case e.NUM_ONE:
|
||||
code = e.ONE;
|
||||
break;
|
||||
case e.NUM_TWO:
|
||||
code = e.TWO;
|
||||
break;
|
||||
case e.NUM_THREE:
|
||||
code = e.THREE;
|
||||
break;
|
||||
case e.NUM_FOUR:
|
||||
code = e.FOUR;
|
||||
break;
|
||||
case e.NUM_FIVE:
|
||||
code = e.FIVE;
|
||||
break;
|
||||
case e.NUM_SIX:
|
||||
code = e.SIX;
|
||||
break;
|
||||
case e.NUM_SEVEN:
|
||||
code = e.SEVEN;
|
||||
break;
|
||||
case e.NUM_EIGHT:
|
||||
code = e.EIGHT;
|
||||
break;
|
||||
case e.NUM_NINE:
|
||||
code = e.NINE;
|
||||
break;
|
||||
}
|
||||
}
|
||||
this.charThatStartedEdit = code;
|
||||
var sc = this.selModel.getSelectedCell();
|
||||
var col = sc[1];
|
||||
@ -65,13 +103,15 @@ Ext.override(Ext.grid.AppinfTable, {
|
||||
var edView = this.view.getEditorParent(ed);
|
||||
ed.render(edView);
|
||||
}
|
||||
this.modifiedField = ed.field;
|
||||
this.modifiedRecord = r;
|
||||
var edfield = ed.field;
|
||||
ed.row = row;
|
||||
ed.col = col;
|
||||
ed.record = r;
|
||||
ed.field = edfield;
|
||||
ed.on("complete", this.onEditComplete, this, {single: true});
|
||||
ed.on("specialkey", this.selModel.onEditorKey, this.selModel);
|
||||
ed.on("specialkey", this.onEditorKey, this);
|
||||
this.activeEditor = ed;
|
||||
var v = this.preEditValue(r, field);
|
||||
this.origEditValue = v;
|
||||
@ -98,7 +138,7 @@ Ext.override(Ext.grid.AppinfTable, {
|
||||
onEditComplete : function(ed, value, startValue){
|
||||
this.editing = false;
|
||||
this.activeEditor = null;
|
||||
ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
|
||||
ed.un("specialkey", this.onEditorKey, this);
|
||||
var r = ed.record;
|
||||
var field = this.colModel.getDataIndex(ed.col);
|
||||
value = this.postEditValue(value, startValue, r, field);
|
||||
@ -120,6 +160,27 @@ Ext.override(Ext.grid.AppinfTable, {
|
||||
}
|
||||
}
|
||||
this.view.focusCell(ed.row, ed.col);
|
||||
},
|
||||
onEditorKey : function(field, e){
|
||||
var k = e.getKey();
|
||||
|
||||
// reset origEditValue
|
||||
if(k == e.ESC){
|
||||
e.stopEvent();
|
||||
var ed = this.activeEditor;
|
||||
if (ed)
|
||||
{
|
||||
this.activeEditor = null;
|
||||
ed.un("specialkey", this.onEditorKey, this);
|
||||
ed.un("complete", this.onEditComplete, this);
|
||||
ed.cancelEdit();
|
||||
this.editing = false;
|
||||
this.view.focusCell(ed.row, ed.col);
|
||||
}
|
||||
//this.modifiedRecord.set(this.modifiedField, this.origEditValue);
|
||||
}
|
||||
else
|
||||
this.selModel.onEditorKey(field,e);
|
||||
}
|
||||
});
|
||||
|
5736
WebWidgets/ExtJS/testsuite/bin/ext-core-debug.js
Normal file
19
WebWidgets/ExtJS/testsuite/bin/ext-core.js
Normal file
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
@ -1,111 +1,111 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
/*
|
||||
Creates rounded, raised boxes like on the Ext website - the markup isn't pretty:
|
||||
<div class="x-box-blue">
|
||||
<div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>
|
||||
<div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc">
|
||||
<h3>YOUR TITLE HERE (optional)</h3>
|
||||
<div>YOUR CONTENT HERE</div>
|
||||
</div></div></div>
|
||||
<div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div>
|
||||
</div>
|
||||
*/
|
||||
|
||||
.x-box-tl {
|
||||
background: transparent url(../images/default/box/corners.gif) no-repeat 0 0;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-box-tc {
|
||||
height: 8px;
|
||||
background: transparent url(../images/default/box/tb.gif) repeat-x 0 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-tr {
|
||||
background: transparent url(../images/default/box/corners.gif) no-repeat right -8px;
|
||||
}
|
||||
|
||||
.x-box-ml {
|
||||
background: transparent url(../images/default/box/l.gif) repeat-y 0;
|
||||
padding-left: 4px;
|
||||
overflow: hidden;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-box-mc {
|
||||
background: #eee url(../images/default/box/tb.gif) repeat-x 0 -16px;
|
||||
padding: 4px 10px;
|
||||
font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
|
||||
color: #393939;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.x-box-mc h3 {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
margin: 0 0 4px 0;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-box-mr {
|
||||
background: transparent url(../images/default/box/r.gif) repeat-y right;
|
||||
padding-right: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-bl {
|
||||
background: transparent url(../images/default/box/corners.gif) no-repeat 0 -16px;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-box-bc {
|
||||
background: transparent url(../images/default/box/tb.gif) repeat-x 0 -8px;
|
||||
height: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-br {
|
||||
background: transparent url(../images/default/box/corners.gif) no-repeat right -24px;
|
||||
}
|
||||
|
||||
.x-box-tl, .x-box-bl {
|
||||
padding-left: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-tr, .x-box-br {
|
||||
padding-right: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
|
||||
background-image: url(../images/default/box/corners-blue.gif);
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
|
||||
background-image: url(../images/default/box/tb-blue.gif);
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-mc {
|
||||
background-color: #c3daf9;
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-mc h3 {
|
||||
color: #17385b;
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-ml {
|
||||
background-image: url(../images/default/box/l-blue.gif);
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-mr {
|
||||
background-image: url(../images/default/box/r-blue.gif);
|
||||
/*
|
||||
Creates rounded, raised boxes like on the Ext website - the markup isn't pretty:
|
||||
<div class="x-box-blue">
|
||||
<div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>
|
||||
<div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc">
|
||||
<h3>YOUR TITLE HERE (optional)</h3>
|
||||
<div>YOUR CONTENT HERE</div>
|
||||
</div></div></div>
|
||||
<div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div>
|
||||
</div>
|
||||
*/
|
||||
|
||||
.x-box-tl {
|
||||
background: transparent url(../images/default/box/corners.gif) no-repeat 0 0;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-box-tc {
|
||||
height: 8px;
|
||||
background: transparent url(../images/default/box/tb.gif) repeat-x 0 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-tr {
|
||||
background: transparent url(../images/default/box/corners.gif) no-repeat right -8px;
|
||||
}
|
||||
|
||||
.x-box-ml {
|
||||
background: transparent url(../images/default/box/l.gif) repeat-y 0;
|
||||
padding-left: 4px;
|
||||
overflow: hidden;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-box-mc {
|
||||
background: #eee url(../images/default/box/tb.gif) repeat-x 0 -16px;
|
||||
padding: 4px 10px;
|
||||
font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
|
||||
color: #393939;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.x-box-mc h3 {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
margin: 0 0 4px 0;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-box-mr {
|
||||
background: transparent url(../images/default/box/r.gif) repeat-y right;
|
||||
padding-right: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-bl {
|
||||
background: transparent url(../images/default/box/corners.gif) no-repeat 0 -16px;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-box-bc {
|
||||
background: transparent url(../images/default/box/tb.gif) repeat-x 0 -8px;
|
||||
height: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-br {
|
||||
background: transparent url(../images/default/box/corners.gif) no-repeat right -24px;
|
||||
}
|
||||
|
||||
.x-box-tl, .x-box-bl {
|
||||
padding-left: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-tr, .x-box-br {
|
||||
padding-right: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
|
||||
background-image: url(../images/default/box/corners-blue.gif);
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
|
||||
background-image: url(../images/default/box/tb-blue.gif);
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-mc {
|
||||
background-color: #c3daf9;
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-mc h3 {
|
||||
color: #17385b;
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-ml {
|
||||
background-image: url(../images/default/box/l-blue.gif);
|
||||
}
|
||||
|
||||
.x-box-blue .x-box-mr {
|
||||
background-image: url(../images/default/box/r-blue.gif);
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
@ -70,7 +70,9 @@
|
||||
padding-bottom:2px;
|
||||
padding-right:0;
|
||||
}
|
||||
|
||||
.ext-gecko3 .x-btn-text-icon .x-btn-center .x-btn-text {
|
||||
padding-top:2px;
|
||||
}
|
||||
.x-btn-left, .x-btn-right{
|
||||
font-size:1px;
|
||||
line-height:1px;
|
||||
|
@ -1,55 +1,55 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
.x-combo-list {
|
||||
border:1px solid #98c0f4;
|
||||
background:#ddecfe;
|
||||
zoom:1;
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-combo-list-inner {
|
||||
overflow:auto;
|
||||
background:white;
|
||||
position:relative; /* for calculating scroll offsets */
|
||||
zoom:1;
|
||||
overflow-x:hidden;
|
||||
}
|
||||
.x-combo-list-hd {
|
||||
font:bold 11px tahoma, arial, helvetica, sans-serif;
|
||||
color:#15428b;
|
||||
background-image: url(../images/default/layout/panel-title-light-bg.gif);
|
||||
border-bottom:1px solid #98c0f4;
|
||||
padding:3px;
|
||||
}
|
||||
.x-resizable-pinned .x-combo-list-inner {
|
||||
border-bottom:1px solid #98c0f4;
|
||||
}
|
||||
.x-combo-list-item {
|
||||
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
||||
padding:2px;
|
||||
border:1px solid #fff;
|
||||
white-space: nowrap;
|
||||
overflow:hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.x-combo-list .x-combo-selected{
|
||||
border:1px dotted #a3bae9 !important;
|
||||
background:#DFE8F6;
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-combo-noedit{
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-combo-list .x-toolbar {
|
||||
border-top:1px solid #98c0f4;
|
||||
border-bottom:0 none;
|
||||
}
|
||||
|
||||
.x-combo-list-small .x-combo-list-item {
|
||||
font:normal 11px tahoma, arial, helvetica, sans-serif;
|
||||
.x-combo-list {
|
||||
border:1px solid #98c0f4;
|
||||
background:#ddecfe;
|
||||
zoom:1;
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-combo-list-inner {
|
||||
overflow:auto;
|
||||
background:white;
|
||||
position:relative; /* for calculating scroll offsets */
|
||||
zoom:1;
|
||||
overflow-x:hidden;
|
||||
}
|
||||
.x-combo-list-hd {
|
||||
font:bold 11px tahoma, arial, helvetica, sans-serif;
|
||||
color:#15428b;
|
||||
background-image: url(../images/default/layout/panel-title-light-bg.gif);
|
||||
border-bottom:1px solid #98c0f4;
|
||||
padding:3px;
|
||||
}
|
||||
.x-resizable-pinned .x-combo-list-inner {
|
||||
border-bottom:1px solid #98c0f4;
|
||||
}
|
||||
.x-combo-list-item {
|
||||
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
||||
padding:2px;
|
||||
border:1px solid #fff;
|
||||
white-space: nowrap;
|
||||
overflow:hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.x-combo-list .x-combo-selected{
|
||||
border:1px dotted #a3bae9 !important;
|
||||
background:#DFE8F6;
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-combo-noedit{
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-combo-list .x-toolbar {
|
||||
border-top:1px solid #98c0f4;
|
||||
border-bottom:0 none;
|
||||
}
|
||||
|
||||
.x-combo-list-small .x-combo-list-item {
|
||||
font:normal 11px tahoma, arial, helvetica, sans-serif;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
@ -1,246 +1,247 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
.x-date-picker {
|
||||
border: 1px solid #1b376c;
|
||||
border-top:0 none;
|
||||
background:#fff;
|
||||
position:relative;
|
||||
}
|
||||
.x-date-picker a {
|
||||
-moz-outline:0 none;
|
||||
outline:0 none;
|
||||
}
|
||||
.x-date-inner, .x-date-inner td, .x-date-inner th{
|
||||
border-collapse:separate;
|
||||
}
|
||||
.x-date-middle,.x-date-left,.x-date-right {
|
||||
background: url(../images/default/shared/hd-sprite.gif) repeat-x 0 -83px;
|
||||
color:#FFF;
|
||||
font:bold 11px "sans serif", tahoma, verdana, helvetica;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.x-date-middle .x-btn-left,.x-date-middle .x-btn-center,.x-date-middle .x-btn-right{
|
||||
background:transparent !important;
|
||||
vertical-align:middle;
|
||||
}
|
||||
.x-date-middle .x-btn .x-btn-text {
|
||||
color:#fff;
|
||||
}
|
||||
.x-date-middle .x-btn-with-menu .x-btn-center em {
|
||||
background:transparent url(../images/default/toolbar/btn-arrow-light.gif) no-repeat right 0;
|
||||
}
|
||||
.x-date-right, .x-date-left {
|
||||
width:18px;
|
||||
}
|
||||
.x-date-right{
|
||||
text-align:right;
|
||||
}
|
||||
.x-date-middle {
|
||||
padding-top:2px;padding-bottom:2px;
|
||||
}
|
||||
.x-date-right a, .x-date-left a{
|
||||
display:block;
|
||||
width:16px;
|
||||
height:16px;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
cursor:pointer;
|
||||
-moz-opacity: 0.6;
|
||||
opacity:.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.x-date-right a:hover, .x-date-left a:hover{
|
||||
-moz-opacity: 1;
|
||||
opacity:1;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.x-date-right a {
|
||||
background-image: url(../images/default/shared/right-btn.gif);
|
||||
margin-right:2px;
|
||||
text-decoration:none !important;
|
||||
}
|
||||
.x-date-left a{
|
||||
background-image: url(../images/default/shared/left-btn.gif);
|
||||
margin-left:2px;
|
||||
text-decoration:none !important;
|
||||
}
|
||||
table.x-date-inner {
|
||||
width:100%;
|
||||
table-layout:fixed;
|
||||
}
|
||||
.x-date-inner th {
|
||||
width:25px;
|
||||
}
|
||||
.x-date-inner th {
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
text-align:right !important;
|
||||
border-bottom: 1px solid #a3bad9;
|
||||
font:normal 10px arial, helvetica,tahoma,sans-serif;
|
||||
color:#233d6d;
|
||||
cursor:default;
|
||||
padding:0;
|
||||
border-collapse:separate;
|
||||
}
|
||||
.x-date-inner th span {
|
||||
display:block;
|
||||
padding:2px;
|
||||
padding-right:7px;
|
||||
}
|
||||
.x-date-inner td {
|
||||
border: 1px solid #fff;
|
||||
text-align:right;
|
||||
padding:0;
|
||||
}
|
||||
.x-date-inner a {
|
||||
padding:2px 5px;
|
||||
display:block;
|
||||
font:normal 11px arial, helvetica,tahoma,sans-serif;
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
text-align:right;
|
||||
zoom:1;
|
||||
}
|
||||
.x-date-inner .x-date-active{
|
||||
cursor:pointer;
|
||||
color:black;
|
||||
}
|
||||
.x-date-inner .x-date-selected a{
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
border:1px solid #8db2e3;
|
||||
padding:1px 4px;
|
||||
}
|
||||
.x-date-inner .x-date-today a{
|
||||
border: 1px solid darkred;
|
||||
padding:1px 4px;
|
||||
}
|
||||
.x-date-inner .x-date-selected span{
|
||||
font-weight:bold;
|
||||
}
|
||||
.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a {
|
||||
color:#aaaaaa;
|
||||
text-decoration:none !important;
|
||||
}
|
||||
.x-date-bottom {
|
||||
padding:4px;
|
||||
border-top: 1px solid #a3bad9;
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
}
|
||||
|
||||
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
|
||||
text-decoration:none !important;
|
||||
color:black;
|
||||
background: #ddecfe;
|
||||
}
|
||||
|
||||
.x-date-inner .x-date-disabled a {
|
||||
cursor:default;
|
||||
background:#eeeeee;
|
||||
color:#bbbbbb;
|
||||
}
|
||||
.x-date-mmenu{
|
||||
background:#eeeeee !important;
|
||||
}
|
||||
.x-date-mmenu .x-menu-item {
|
||||
font-size:10px;
|
||||
padding:1px 24px 1px 4px;
|
||||
white-space: nowrap;
|
||||
color:#000;
|
||||
}
|
||||
.x-date-mmenu .x-menu-item .x-menu-item-icon {
|
||||
width:10px;height:10px;margin-right:5px;
|
||||
background-position:center -4px !important;
|
||||
}
|
||||
|
||||
.x-date-mp {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
background:white;
|
||||
display:none;
|
||||
}
|
||||
.x-date-mp td {
|
||||
padding:2px;
|
||||
font:normal 11px arial, helvetica,tahoma,sans-serif;
|
||||
}
|
||||
td.x-date-mp-month,td.x-date-mp-year,td.x-date-mp-ybtn {
|
||||
border: 0 none;
|
||||
text-align:center;
|
||||
vertical-align: middle;
|
||||
width:25%;
|
||||
}
|
||||
.x-date-mp-ok {
|
||||
margin-right:3px;
|
||||
}
|
||||
.x-date-mp-btns button {
|
||||
text-decoration:none;
|
||||
text-align:center;
|
||||
text-decoration:none !important;
|
||||
background:#083772;
|
||||
color:white;
|
||||
border:1px solid;
|
||||
border-color: #3366cc #000055 #000055 #3366cc;
|
||||
padding:1px 3px 1px;
|
||||
font:normal 11px arial, helvetica,tahoma,sans-serif;
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-date-mp-btns {
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
}
|
||||
.x-date-mp-btns td {
|
||||
border-top: 1px solid #c5d2df;
|
||||
text-align:center;
|
||||
}
|
||||
td.x-date-mp-month a,td.x-date-mp-year a {
|
||||
display:block;
|
||||
padding:2px 4px;
|
||||
text-decoration:none;
|
||||
text-align:center;
|
||||
color:#15428b;
|
||||
}
|
||||
|
||||
td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
|
||||
color:#15428b;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
background: #ddecfe;
|
||||
}
|
||||
|
||||
td.x-date-mp-sel a {
|
||||
padding:1px 3px;
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
border:1px solid #8db2e3;
|
||||
}
|
||||
.x-date-mp-ybtn a {
|
||||
overflow:hidden;
|
||||
width:15px;
|
||||
height:15px;
|
||||
cursor:pointer;
|
||||
background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat;
|
||||
display:block;
|
||||
margin:0 auto;
|
||||
}
|
||||
.x-date-mp-ybtn a.x-date-mp-next {
|
||||
background-position:0 -120px;
|
||||
}
|
||||
.x-date-mp-ybtn a.x-date-mp-next:hover {
|
||||
background-position:-15px -120px;
|
||||
}
|
||||
.x-date-mp-ybtn a.x-date-mp-prev {
|
||||
background-position:0 -105px;
|
||||
}
|
||||
.x-date-mp-ybtn a.x-date-mp-prev:hover {
|
||||
background-position:-15px -105px;
|
||||
}
|
||||
.x-date-mp-ybtn {
|
||||
text-align:center;
|
||||
}
|
||||
td.x-date-mp-sep {
|
||||
border-right:1px solid #c5d2df;
|
||||
.x-date-picker {
|
||||
border: 1px solid #1b376c;
|
||||
border-top:0 none;
|
||||
background:#fff;
|
||||
position:relative;
|
||||
}
|
||||
.x-date-picker a {
|
||||
-moz-outline:0 none;
|
||||
outline:0 none;
|
||||
}
|
||||
.x-date-inner, .x-date-inner td, .x-date-inner th{
|
||||
border-collapse:separate;
|
||||
}
|
||||
.x-date-middle,.x-date-left,.x-date-right {
|
||||
background: url(../images/default/shared/hd-sprite.gif) repeat-x 0 -83px;
|
||||
color:#FFF;
|
||||
font:bold 11px "sans serif", tahoma, verdana, helvetica;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.x-date-middle .x-btn-left,.x-date-middle .x-btn-center,.x-date-middle .x-btn-right{
|
||||
background:transparent !important;
|
||||
vertical-align:middle;
|
||||
}
|
||||
.x-date-middle .x-btn .x-btn-text {
|
||||
color:#fff;
|
||||
}
|
||||
.x-date-middle .x-btn-with-menu .x-btn-center em {
|
||||
background:transparent url(../images/default/toolbar/btn-arrow-light.gif) no-repeat right 0;
|
||||
}
|
||||
.x-date-right, .x-date-left {
|
||||
width:18px;
|
||||
}
|
||||
.x-date-right{
|
||||
text-align:right;
|
||||
}
|
||||
.x-date-middle {
|
||||
padding-top:2px;padding-bottom:2px;
|
||||
width:130px; /* FF3 */
|
||||
}
|
||||
.x-date-right a, .x-date-left a{
|
||||
display:block;
|
||||
width:16px;
|
||||
height:16px;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
cursor:pointer;
|
||||
-moz-opacity: 0.6;
|
||||
opacity:.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.x-date-right a:hover, .x-date-left a:hover{
|
||||
-moz-opacity: 1;
|
||||
opacity:1;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.x-date-right a {
|
||||
background-image: url(../images/default/shared/right-btn.gif);
|
||||
margin-right:2px;
|
||||
text-decoration:none !important;
|
||||
}
|
||||
.x-date-left a{
|
||||
background-image: url(../images/default/shared/left-btn.gif);
|
||||
margin-left:2px;
|
||||
text-decoration:none !important;
|
||||
}
|
||||
table.x-date-inner {
|
||||
width:100%;
|
||||
table-layout:fixed;
|
||||
}
|
||||
.x-date-inner th {
|
||||
width:25px;
|
||||
}
|
||||
.x-date-inner th {
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
text-align:right !important;
|
||||
border-bottom: 1px solid #a3bad9;
|
||||
font:normal 10px arial, helvetica,tahoma,sans-serif;
|
||||
color:#233d6d;
|
||||
cursor:default;
|
||||
padding:0;
|
||||
border-collapse:separate;
|
||||
}
|
||||
.x-date-inner th span {
|
||||
display:block;
|
||||
padding:2px;
|
||||
padding-right:7px;
|
||||
}
|
||||
.x-date-inner td {
|
||||
border: 1px solid #fff;
|
||||
text-align:right;
|
||||
padding:0;
|
||||
}
|
||||
.x-date-inner a {
|
||||
padding:2px 5px;
|
||||
display:block;
|
||||
font:normal 11px arial, helvetica,tahoma,sans-serif;
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
text-align:right;
|
||||
zoom:1;
|
||||
}
|
||||
.x-date-inner .x-date-active{
|
||||
cursor:pointer;
|
||||
color:black;
|
||||
}
|
||||
.x-date-inner .x-date-selected a{
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
border:1px solid #8db2e3;
|
||||
padding:1px 4px;
|
||||
}
|
||||
.x-date-inner .x-date-today a{
|
||||
border: 1px solid darkred;
|
||||
padding:1px 4px;
|
||||
}
|
||||
.x-date-inner .x-date-selected span{
|
||||
font-weight:bold;
|
||||
}
|
||||
.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a {
|
||||
color:#aaaaaa;
|
||||
text-decoration:none !important;
|
||||
}
|
||||
.x-date-bottom {
|
||||
padding:4px;
|
||||
border-top: 1px solid #a3bad9;
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
}
|
||||
|
||||
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
|
||||
text-decoration:none !important;
|
||||
color:black;
|
||||
background: #ddecfe;
|
||||
}
|
||||
|
||||
.x-date-inner .x-date-disabled a {
|
||||
cursor:default;
|
||||
background:#eeeeee;
|
||||
color:#bbbbbb;
|
||||
}
|
||||
.x-date-mmenu{
|
||||
background:#eeeeee !important;
|
||||
}
|
||||
.x-date-mmenu .x-menu-item {
|
||||
font-size:10px;
|
||||
padding:1px 24px 1px 4px;
|
||||
white-space: nowrap;
|
||||
color:#000;
|
||||
}
|
||||
.x-date-mmenu .x-menu-item .x-menu-item-icon {
|
||||
width:10px;height:10px;margin-right:5px;
|
||||
background-position:center -4px !important;
|
||||
}
|
||||
|
||||
.x-date-mp {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
background:white;
|
||||
display:none;
|
||||
}
|
||||
.x-date-mp td {
|
||||
padding:2px;
|
||||
font:normal 11px arial, helvetica,tahoma,sans-serif;
|
||||
}
|
||||
td.x-date-mp-month,td.x-date-mp-year,td.x-date-mp-ybtn {
|
||||
border: 0 none;
|
||||
text-align:center;
|
||||
vertical-align: middle;
|
||||
width:25%;
|
||||
}
|
||||
.x-date-mp-ok {
|
||||
margin-right:3px;
|
||||
}
|
||||
.x-date-mp-btns button {
|
||||
text-decoration:none;
|
||||
text-align:center;
|
||||
text-decoration:none !important;
|
||||
background:#083772;
|
||||
color:white;
|
||||
border:1px solid;
|
||||
border-color: #3366cc #000055 #000055 #3366cc;
|
||||
padding:1px 3px 1px;
|
||||
font:normal 11px arial, helvetica,tahoma,sans-serif;
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-date-mp-btns {
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
}
|
||||
.x-date-mp-btns td {
|
||||
border-top: 1px solid #c5d2df;
|
||||
text-align:center;
|
||||
}
|
||||
td.x-date-mp-month a,td.x-date-mp-year a {
|
||||
display:block;
|
||||
padding:2px 4px;
|
||||
text-decoration:none;
|
||||
text-align:center;
|
||||
color:#15428b;
|
||||
}
|
||||
|
||||
td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
|
||||
color:#15428b;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
background: #ddecfe;
|
||||
}
|
||||
|
||||
td.x-date-mp-sel a {
|
||||
padding:1px 3px;
|
||||
background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;
|
||||
border:1px solid #8db2e3;
|
||||
}
|
||||
.x-date-mp-ybtn a {
|
||||
overflow:hidden;
|
||||
width:15px;
|
||||
height:15px;
|
||||
cursor:pointer;
|
||||
background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat;
|
||||
display:block;
|
||||
margin:0 auto;
|
||||
}
|
||||
.x-date-mp-ybtn a.x-date-mp-next {
|
||||
background-position:0 -120px;
|
||||
}
|
||||
.x-date-mp-ybtn a.x-date-mp-next:hover {
|
||||
background-position:-15px -120px;
|
||||
}
|
||||
.x-date-mp-ybtn a.x-date-mp-prev {
|
||||
background-position:0 -105px;
|
||||
}
|
||||
.x-date-mp-ybtn a.x-date-mp-prev:hover {
|
||||
background-position:-15px -105px;
|
||||
}
|
||||
.x-date-mp-ybtn {
|
||||
text-align:center;
|
||||
}
|
||||
td.x-date-mp-sep {
|
||||
border-right:1px solid #c5d2df;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
@ -1,37 +1,37 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
#x-debug-browser .x-tree .x-tree-node a span {
|
||||
color:#222297;
|
||||
font-size:11px;
|
||||
padding-top:2px;
|
||||
font-family:"monotype","courier new",sans-serif;
|
||||
line-height:18px;
|
||||
}
|
||||
#x-debug-browser .x-tree a i {
|
||||
color:#FF4545;
|
||||
font-style:normal;
|
||||
}
|
||||
#x-debug-browser .x-tree a em {
|
||||
color:#999;
|
||||
}
|
||||
#x-debug-browser .x-tree .x-tree-node .x-tree-selected a span{
|
||||
background:#c3daf9;
|
||||
}
|
||||
#x-debug-browser .x-tool-toggle {
|
||||
background-position:0 -75px;
|
||||
}
|
||||
#x-debug-browser .x-tool-toggle-over {
|
||||
background-position:-15px -75px;
|
||||
}
|
||||
#x-debug-browser.x-panel-collapsed .x-tool-toggle {
|
||||
background-position:0 -60px;
|
||||
}
|
||||
#x-debug-browser.x-panel-collapsed .x-tool-toggle-over {
|
||||
background-position:-15px -60px;
|
||||
#x-debug-browser .x-tree .x-tree-node a span {
|
||||
color:#222297;
|
||||
font-size:11px;
|
||||
padding-top:2px;
|
||||
font-family:"monotype","courier new",sans-serif;
|
||||
line-height:18px;
|
||||
}
|
||||
#x-debug-browser .x-tree a i {
|
||||
color:#FF4545;
|
||||
font-style:normal;
|
||||
}
|
||||
#x-debug-browser .x-tree a em {
|
||||
color:#999;
|
||||
}
|
||||
#x-debug-browser .x-tree .x-tree-node .x-tree-selected a span{
|
||||
background:#c3daf9;
|
||||
}
|
||||
#x-debug-browser .x-tool-toggle {
|
||||
background-position:0 -75px;
|
||||
}
|
||||
#x-debug-browser .x-tool-toggle-over {
|
||||
background-position:-15px -75px;
|
||||
}
|
||||
#x-debug-browser.x-panel-collapsed .x-tool-toggle {
|
||||
background-position:0 -60px;
|
||||
}
|
||||
#x-debug-browser.x-panel-collapsed .x-tool-toggle-over {
|
||||
background-position:-15px -60px;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
@ -44,6 +44,11 @@
|
||||
width:47px;
|
||||
height:32px;
|
||||
}
|
||||
.x-window-dlg .ext-mb-icon {
|
||||
float:left;
|
||||
width:47px;
|
||||
height:32px;
|
||||
}
|
||||
.ext-ie .x-window-dlg .ext-mb-icon {
|
||||
width:44px; /* 3px IE margin issue */
|
||||
}
|
||||
@ -58,4 +63,7 @@
|
||||
}
|
||||
.x-window-dlg .ext-mb-error {
|
||||
background:transparent url(../images/default/window/icon-error.gif) no-repeat top left;
|
||||
}
|
||||
.ext-gecko2 .ext-mb-fix-cursor {
|
||||
overflow:auto;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
@ -21,7 +21,7 @@
|
||||
border:1px solid #99bbe8;
|
||||
}
|
||||
|
||||
.ext-ie .x-grid3 table,.ext-safari .x-grid3 table {
|
||||
.x-grid3 table {
|
||||
table-layout:fixed;
|
||||
}
|
||||
.x-grid3-viewport{
|
||||
@ -139,11 +139,16 @@
|
||||
}
|
||||
.x-grid3-focus {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
-moz-outline:0 none;
|
||||
width:1px;
|
||||
height:1px;
|
||||
line-height:1px;
|
||||
font-size:1px;
|
||||
-moz-outline:0 none;
|
||||
outline:0 none;
|
||||
-moz-user-select: normal;
|
||||
-khtml-user-select: normal;
|
||||
-moz-user-select: text;
|
||||
-khtml-user-select: text;
|
||||
}
|
||||
|
||||
/* header styles */
|
||||
|
@ -1,267 +1,273 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
.x-border-layout-ct {
|
||||
background:#dfe8f6;
|
||||
}
|
||||
.x-border-panel {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
}
|
||||
|
||||
.x-tool-collapse-south {
|
||||
background-position:0 -195px;
|
||||
}
|
||||
.x-tool-collapse-south-over {
|
||||
background-position:-15px -195px;
|
||||
}
|
||||
|
||||
.x-tool-collapse-north {
|
||||
background-position:0 -210px;
|
||||
}
|
||||
.x-tool-collapse-north-over {
|
||||
background-position:-15px -210px;
|
||||
}
|
||||
|
||||
.x-tool-collapse-west {
|
||||
background-position:0 -180px;
|
||||
}
|
||||
.x-tool-collapse-west-over {
|
||||
background-position:-15px -180px;
|
||||
}
|
||||
|
||||
.x-tool-collapse-east {
|
||||
background-position:0 -165px;
|
||||
}
|
||||
.x-tool-collapse-east-over {
|
||||
background-position:-15px -165px;
|
||||
}
|
||||
|
||||
|
||||
.x-tool-expand-south {
|
||||
background-position:0 -210px;
|
||||
}
|
||||
.x-tool-expand-south-over {
|
||||
background-position:-15px -210px;
|
||||
}
|
||||
|
||||
.x-tool-expand-north {
|
||||
background-position:0 -195px;
|
||||
}
|
||||
.x-tool-expand-north-over {
|
||||
background-position:-15px -195px;
|
||||
}
|
||||
|
||||
.x-tool-expand-west {
|
||||
background-position:0 -165px;
|
||||
}
|
||||
.x-tool-expand-west-over {
|
||||
background-position:-15px -165px;
|
||||
}
|
||||
|
||||
.x-tool-expand-east {
|
||||
background-position:0 -180px;
|
||||
}
|
||||
.x-tool-expand-east-over {
|
||||
background-position:-15px -180px;
|
||||
}
|
||||
|
||||
.x-tool-expand-north, .x-tool-expand-south {
|
||||
float:right;
|
||||
margin:3px;
|
||||
}
|
||||
.x-tool-expand-east, .x-tool-expand-west {
|
||||
float:none;
|
||||
margin:3px auto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.x-accordion-hd .x-tool-toggle {
|
||||
background-position:0 -255px;
|
||||
}
|
||||
.x-accordion-hd .x-tool-toggle-over {
|
||||
background-position:-15px -255px;
|
||||
}
|
||||
.x-panel-collapsed .x-accordion-hd .x-tool-toggle {
|
||||
background-position:0 -240px;
|
||||
}
|
||||
.x-panel-collapsed .x-accordion-hd .x-tool-toggle-over {
|
||||
background-position:-15px -240px;
|
||||
}
|
||||
|
||||
.x-accordion-hd {
|
||||
color:#222;
|
||||
padding-top:4px;
|
||||
padding-bottom:3px;
|
||||
border-top:0 none;
|
||||
font-weight:normal;
|
||||
background: transparent url(../images/default/panel/light-hd.gif) repeat-x 0 -9px;
|
||||
}
|
||||
|
||||
.x-layout-collapsed{
|
||||
position:absolute;
|
||||
left:-10000px;
|
||||
top:-10000px;
|
||||
visibility:hidden;
|
||||
background-color:#d2e0f2;
|
||||
width:20px;
|
||||
height:20px;
|
||||
overflow:hidden;
|
||||
border:1px solid #98c0f4;
|
||||
z-index:20;
|
||||
}
|
||||
.ext-border-box .x-layout-collapsed{
|
||||
width:22px;
|
||||
height:22px;
|
||||
}
|
||||
.x-layout-collapsed-over{
|
||||
cursor:pointer;
|
||||
background-color:#d9e8fb;
|
||||
}
|
||||
.x-layout-collapsed-west .x-layout-collapsed-tools, .x-layout-collapsed-east .x-layout-collapsed-tools{
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
width:20px;
|
||||
height:20px;
|
||||
}
|
||||
|
||||
|
||||
.x-layout-split{
|
||||
position:absolute;
|
||||
height:5px;
|
||||
width:5px;
|
||||
line-height:1px;
|
||||
font-size:1px;
|
||||
z-index:3;
|
||||
background-color:transparent;
|
||||
}
|
||||
|
||||
.x-layout-split-h{
|
||||
background-image:url(../images/default/s.gif);
|
||||
background-position: left;
|
||||
}
|
||||
.x-layout-split-v{
|
||||
background-image:url(../images/default/s.gif);
|
||||
background-position: top;
|
||||
}
|
||||
|
||||
.x-column-layout-ct {
|
||||
overflow:hidden;
|
||||
/*padding:3px 3px 3px 3px;*/
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-column {
|
||||
float:left;
|
||||
padding:0;
|
||||
margin:0;
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
/*margin:3px;*/
|
||||
}
|
||||
|
||||
/* mini mode */
|
||||
|
||||
.x-layout-mini {
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
display:block;
|
||||
width:5px;
|
||||
height:35px;
|
||||
cursor:pointer;
|
||||
opacity:.5;
|
||||
-moz-opacity:.5;
|
||||
filter:alpha(opacity=50);
|
||||
}
|
||||
.x-layout-mini-over, .x-layout-collapsed-over .x-layout-mini{
|
||||
opacity:1;
|
||||
-moz-opacity:1;
|
||||
filter:none;
|
||||
}
|
||||
|
||||
.x-layout-split-west .x-layout-mini {
|
||||
top:48%;
|
||||
background-image:url(../images/default/layout/mini-left.gif);
|
||||
}
|
||||
.x-layout-split-east .x-layout-mini {
|
||||
top:48%;
|
||||
background-image:url(../images/default/layout/mini-right.gif);
|
||||
}
|
||||
.x-layout-split-north .x-layout-mini {
|
||||
left:48%;
|
||||
height:5px;
|
||||
width:35px;
|
||||
background-image:url(../images/default/layout/mini-top.gif);
|
||||
}
|
||||
.x-layout-split-south .x-layout-mini {
|
||||
left:48%;
|
||||
height:5px;
|
||||
width:35px;
|
||||
background-image:url(../images/default/layout/mini-bottom.gif);
|
||||
}
|
||||
|
||||
|
||||
.x-layout-cmini-west .x-layout-mini {
|
||||
top:48%;
|
||||
background-image:url(../images/default/layout/mini-right.gif);
|
||||
}
|
||||
|
||||
.x-layout-cmini-east .x-layout-mini {
|
||||
top:48%;
|
||||
background-image:url(../images/default/layout/mini-left.gif);
|
||||
}
|
||||
|
||||
.x-layout-cmini-north .x-layout-mini {
|
||||
left:48%;
|
||||
height:5px;
|
||||
width:35px;
|
||||
background-image:url(../images/default/layout/mini-bottom.gif);
|
||||
}
|
||||
|
||||
.x-layout-cmini-south .x-layout-mini {
|
||||
left:48%;
|
||||
height:5px;
|
||||
width:35px;
|
||||
background-image:url(../images/default/layout/mini-top.gif);
|
||||
}
|
||||
|
||||
.x-layout-cmini-west, .x-layout-cmini-east {
|
||||
border:0 none;
|
||||
width:5px !important;
|
||||
padding:0;
|
||||
background:transparent;
|
||||
}
|
||||
|
||||
.x-layout-cmini-north, .x-layout-cmini-south {
|
||||
border:0 none;
|
||||
height:5px !important;
|
||||
padding:0;
|
||||
background:transparent;
|
||||
}
|
||||
|
||||
.x-viewport, .x-viewport body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0 none;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.x-abs-layout-item {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
}
|
||||
|
||||
.ext-ie input.x-abs-layout-item, .ext-ie textarea.x-abs-layout-item {
|
||||
margin:0;
|
||||
.x-border-layout-ct {
|
||||
background:#dfe8f6;
|
||||
}
|
||||
.x-border-panel {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
}
|
||||
|
||||
.x-tool-collapse-south {
|
||||
background-position:0 -195px;
|
||||
}
|
||||
.x-tool-collapse-south-over {
|
||||
background-position:-15px -195px;
|
||||
}
|
||||
|
||||
.x-tool-collapse-north {
|
||||
background-position:0 -210px;
|
||||
}
|
||||
.x-tool-collapse-north-over {
|
||||
background-position:-15px -210px;
|
||||
}
|
||||
|
||||
.x-tool-collapse-west {
|
||||
background-position:0 -180px;
|
||||
}
|
||||
.x-tool-collapse-west-over {
|
||||
background-position:-15px -180px;
|
||||
}
|
||||
|
||||
.x-tool-collapse-east {
|
||||
background-position:0 -165px;
|
||||
}
|
||||
.x-tool-collapse-east-over {
|
||||
background-position:-15px -165px;
|
||||
}
|
||||
|
||||
|
||||
.x-tool-expand-south {
|
||||
background-position:0 -210px;
|
||||
}
|
||||
.x-tool-expand-south-over {
|
||||
background-position:-15px -210px;
|
||||
}
|
||||
|
||||
.x-tool-expand-north {
|
||||
background-position:0 -195px;
|
||||
}
|
||||
.x-tool-expand-north-over {
|
||||
background-position:-15px -195px;
|
||||
}
|
||||
|
||||
.x-tool-expand-west {
|
||||
background-position:0 -165px;
|
||||
}
|
||||
.x-tool-expand-west-over {
|
||||
background-position:-15px -165px;
|
||||
}
|
||||
|
||||
.x-tool-expand-east {
|
||||
background-position:0 -180px;
|
||||
}
|
||||
.x-tool-expand-east-over {
|
||||
background-position:-15px -180px;
|
||||
}
|
||||
|
||||
.x-tool-expand-north, .x-tool-expand-south {
|
||||
float:right;
|
||||
margin:3px;
|
||||
}
|
||||
.x-tool-expand-east, .x-tool-expand-west {
|
||||
float:none;
|
||||
margin:3px auto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.x-accordion-hd .x-tool-toggle {
|
||||
background-position:0 -255px;
|
||||
}
|
||||
.x-accordion-hd .x-tool-toggle-over {
|
||||
background-position:-15px -255px;
|
||||
}
|
||||
.x-panel-collapsed .x-accordion-hd .x-tool-toggle {
|
||||
background-position:0 -240px;
|
||||
}
|
||||
.x-panel-collapsed .x-accordion-hd .x-tool-toggle-over {
|
||||
background-position:-15px -240px;
|
||||
}
|
||||
|
||||
.x-accordion-hd {
|
||||
color:#222;
|
||||
padding-top:4px;
|
||||
padding-bottom:3px;
|
||||
border-top:0 none;
|
||||
font-weight:normal;
|
||||
background: transparent url(../images/default/panel/light-hd.gif) repeat-x 0 -9px;
|
||||
}
|
||||
|
||||
.x-layout-collapsed{
|
||||
position:absolute;
|
||||
left:-10000px;
|
||||
top:-10000px;
|
||||
visibility:hidden;
|
||||
background-color:#d2e0f2;
|
||||
width:20px;
|
||||
height:20px;
|
||||
overflow:hidden;
|
||||
border:1px solid #98c0f4;
|
||||
z-index:20;
|
||||
}
|
||||
.ext-border-box .x-layout-collapsed{
|
||||
width:22px;
|
||||
height:22px;
|
||||
}
|
||||
.x-layout-collapsed-over{
|
||||
cursor:pointer;
|
||||
background-color:#d9e8fb;
|
||||
}
|
||||
.x-layout-collapsed-west .x-layout-collapsed-tools, .x-layout-collapsed-east .x-layout-collapsed-tools{
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
width:20px;
|
||||
height:20px;
|
||||
}
|
||||
|
||||
|
||||
.x-layout-split{
|
||||
position:absolute;
|
||||
height:5px;
|
||||
width:5px;
|
||||
line-height:1px;
|
||||
font-size:1px;
|
||||
z-index:3;
|
||||
background-color:transparent;
|
||||
}
|
||||
|
||||
/* IE6 strict won't drag w/out a color */
|
||||
.ext-strict .ext-ie6 .x-layout-split{
|
||||
background-color: #fff !important;
|
||||
filter: alpha(opacity=1);
|
||||
}
|
||||
|
||||
.x-layout-split-h{
|
||||
background-image:url(../images/default/s.gif);
|
||||
background-position: left;
|
||||
}
|
||||
.x-layout-split-v{
|
||||
background-image:url(../images/default/s.gif);
|
||||
background-position: top;
|
||||
}
|
||||
|
||||
.x-column-layout-ct {
|
||||
overflow:hidden;
|
||||
/*padding:3px 3px 3px 3px;*/
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-column {
|
||||
float:left;
|
||||
padding:0;
|
||||
margin:0;
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
/*margin:3px;*/
|
||||
}
|
||||
|
||||
/* mini mode */
|
||||
|
||||
.x-layout-mini {
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
display:block;
|
||||
width:5px;
|
||||
height:35px;
|
||||
cursor:pointer;
|
||||
opacity:.5;
|
||||
-moz-opacity:.5;
|
||||
filter:alpha(opacity=50);
|
||||
}
|
||||
.x-layout-mini-over, .x-layout-collapsed-over .x-layout-mini{
|
||||
opacity:1;
|
||||
-moz-opacity:1;
|
||||
filter:none;
|
||||
}
|
||||
|
||||
.x-layout-split-west .x-layout-mini {
|
||||
top:48%;
|
||||
background-image:url(../images/default/layout/mini-left.gif);
|
||||
}
|
||||
.x-layout-split-east .x-layout-mini {
|
||||
top:48%;
|
||||
background-image:url(../images/default/layout/mini-right.gif);
|
||||
}
|
||||
.x-layout-split-north .x-layout-mini {
|
||||
left:48%;
|
||||
height:5px;
|
||||
width:35px;
|
||||
background-image:url(../images/default/layout/mini-top.gif);
|
||||
}
|
||||
.x-layout-split-south .x-layout-mini {
|
||||
left:48%;
|
||||
height:5px;
|
||||
width:35px;
|
||||
background-image:url(../images/default/layout/mini-bottom.gif);
|
||||
}
|
||||
|
||||
|
||||
.x-layout-cmini-west .x-layout-mini {
|
||||
top:48%;
|
||||
background-image:url(../images/default/layout/mini-right.gif);
|
||||
}
|
||||
|
||||
.x-layout-cmini-east .x-layout-mini {
|
||||
top:48%;
|
||||
background-image:url(../images/default/layout/mini-left.gif);
|
||||
}
|
||||
|
||||
.x-layout-cmini-north .x-layout-mini {
|
||||
left:48%;
|
||||
height:5px;
|
||||
width:35px;
|
||||
background-image:url(../images/default/layout/mini-bottom.gif);
|
||||
}
|
||||
|
||||
.x-layout-cmini-south .x-layout-mini {
|
||||
left:48%;
|
||||
height:5px;
|
||||
width:35px;
|
||||
background-image:url(../images/default/layout/mini-top.gif);
|
||||
}
|
||||
|
||||
.x-layout-cmini-west, .x-layout-cmini-east {
|
||||
border:0 none;
|
||||
width:5px !important;
|
||||
padding:0;
|
||||
background:transparent;
|
||||
}
|
||||
|
||||
.x-layout-cmini-north, .x-layout-cmini-south {
|
||||
border:0 none;
|
||||
height:5px !important;
|
||||
padding:0;
|
||||
background:transparent;
|
||||
}
|
||||
|
||||
.x-viewport, .x-viewport body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0 none;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.x-abs-layout-item {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
}
|
||||
|
||||
.ext-ie input.x-abs-layout-item, .ext-ie textarea.x-abs-layout-item {
|
||||
margin:0;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
@ -53,11 +53,18 @@
|
||||
}
|
||||
.x-menu-focus {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:-5px;
|
||||
width:0;
|
||||
height:0;
|
||||
left:-1px;
|
||||
top:-1px;
|
||||
width:1px;
|
||||
height:1px;
|
||||
line-height:1px;
|
||||
font-size:1px;
|
||||
-moz-outline:0 none;
|
||||
outline:0 none;
|
||||
-moz-user-select: text;
|
||||
-khtml-user-select: text;
|
||||
overflow:hidden;
|
||||
display:block;
|
||||
}
|
||||
.x-menu a.x-menu-item {
|
||||
display:block;
|
||||
|
@ -1,423 +1,424 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
.x-panel {
|
||||
border-style: solid;
|
||||
border-color: #99bbe8;
|
||||
border-width:0;
|
||||
}
|
||||
|
||||
.x-panel-header {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
color:#15428b;
|
||||
font:bold 11px tahoma,arial,verdana,sans-serif;
|
||||
padding:5px 3px 4px 5px;
|
||||
border:1px solid #99bbe8;
|
||||
line-height: 15px;
|
||||
background: transparent url(../images/default/panel/white-top-bottom.gif) repeat-x 0 -1px;
|
||||
}
|
||||
|
||||
.x-panel-body {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
background:white;
|
||||
position: relative; /* added for item scroll positioning */
|
||||
}
|
||||
|
||||
.x-panel-bbar .x-toolbar {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
|
||||
.x-panel-tbar .x-toolbar {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-panel-tbar-noheader .x-toolbar, .x-panel-mc .x-panel-tbar .x-toolbar {
|
||||
border-top:1px solid #99bbe8;
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
.x-panel-body-noheader, .x-panel-mc .x-panel-body {
|
||||
border-top:1px solid #99bbe8;
|
||||
}
|
||||
.x-panel-header {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-tl .x-panel-header {
|
||||
color:#15428b;
|
||||
font:bold 11px tahoma,arial,verdana,sans-serif;
|
||||
padding:5px 0 4px 0;
|
||||
border:0 none;
|
||||
background:transparent;
|
||||
}
|
||||
.x-panel-tl .x-panel-icon, .x-window-tl .x-panel-icon {
|
||||
padding-left:20px !important;
|
||||
background-repeat:no-repeat;
|
||||
background-position:0 4px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-inline-icon {
|
||||
width:16px;
|
||||
height:16px;
|
||||
background-repeat:no-repeat;
|
||||
background-position:0 0;
|
||||
vertical-align:middle;
|
||||
margin-right:4px;
|
||||
margin-top:-1px;
|
||||
margin-bottom:-1px;
|
||||
}
|
||||
.x-panel-tc {
|
||||
background: transparent url(../images/default/panel/top-bottom.gif) repeat-x 0 0;
|
||||
overflow:hidden;
|
||||
}
|
||||
/* fix ie7 strict mode bug */
|
||||
.ext-strict .ext-ie7 .x-panel-tc {
|
||||
overflow: visible;
|
||||
}
|
||||
.x-panel-tl {
|
||||
background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat 0 0;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
border-bottom:1px solid #99bbe8;
|
||||
}
|
||||
.x-panel-tr {
|
||||
background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat right 0;
|
||||
zoom:1;
|
||||
padding-right:6px;
|
||||
}
|
||||
.x-panel-bc {
|
||||
background: transparent url(../images/default/panel/top-bottom.gif) repeat-x 0 bottom;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-bc .x-panel-footer {
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-panel-bl {
|
||||
background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat 0 bottom;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-br {
|
||||
background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat right bottom;
|
||||
padding-right:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-mc {
|
||||
border:0 none;
|
||||
padding:0;
|
||||
margin:0;
|
||||
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
||||
padding-top:6px;
|
||||
background:#dfe8f6;
|
||||
}
|
||||
.x-panel-mc .x-panel-body {
|
||||
background:transparent;
|
||||
border: 0 none;
|
||||
}
|
||||
.x-panel-ml {
|
||||
background: #fff url(../images/default/panel/left-right.gif) repeat-y 0 0;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-mr {
|
||||
background: transparent url(../images/default/panel/left-right.gif) repeat-y right 0;
|
||||
padding-right:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-bc .x-panel-footer {
|
||||
padding-bottom:6px;
|
||||
}
|
||||
.x-panel-nofooter .x-panel-bc {
|
||||
height:6px;
|
||||
font-size:0;
|
||||
line-height:0;
|
||||
}
|
||||
|
||||
.x-panel-bwrap {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-body {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-panel-collapsed .x-resizable-handle{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.ext-gecko .x-panel-animated div {
|
||||
overflow:hidden !important;
|
||||
}
|
||||
|
||||
/* Plain */
|
||||
.x-plain-body {
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.x-plain-bbar .x-toolbar {
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-plain-tbar .x-toolbar {
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-plain-bwrap {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-plain {
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
/* Tools */
|
||||
.x-tool {
|
||||
overflow:hidden;
|
||||
width:15px;
|
||||
height:15px;
|
||||
float:right;
|
||||
cursor:pointer;
|
||||
background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
/* expand / collapse tools */
|
||||
.x-tool-toggle {
|
||||
background-position:0 -60px;
|
||||
}
|
||||
.x-tool-toggle-over {
|
||||
background-position:-15px -60px;
|
||||
}
|
||||
.x-panel-collapsed .x-tool-toggle {
|
||||
background-position:0 -75px;
|
||||
}
|
||||
.x-panel-collapsed .x-tool-toggle-over {
|
||||
background-position:-15px -75px;
|
||||
}
|
||||
|
||||
.x-tool-close {
|
||||
background-position:0 -0;
|
||||
}
|
||||
.x-tool-close-over {
|
||||
background-position:-15px 0;
|
||||
}
|
||||
|
||||
.x-tool-minimize {
|
||||
background-position:0 -15px;
|
||||
}
|
||||
.x-tool-minimize-over {
|
||||
background-position:-15px -15px;
|
||||
}
|
||||
|
||||
.x-tool-maximize {
|
||||
background-position:0 -30px;
|
||||
}
|
||||
.x-tool-maximize-over {
|
||||
background-position:-15px -30px;
|
||||
}
|
||||
|
||||
.x-tool-restore {
|
||||
background-position:0 -45px;
|
||||
}
|
||||
.x-tool-restore-over {
|
||||
background-position:-15px -45px;
|
||||
}
|
||||
|
||||
.x-tool-gear {
|
||||
background-position:0 -90px;
|
||||
}
|
||||
.x-tool-gear-over {
|
||||
background-position:-15px -90px;
|
||||
}
|
||||
|
||||
.x-tool-pin {
|
||||
background-position:0 -135px;
|
||||
}
|
||||
.x-tool-pin-over {
|
||||
background-position:-15px -135px;
|
||||
}
|
||||
.x-tool-unpin {
|
||||
background-position:0 -150px;
|
||||
}
|
||||
.x-tool-unpin-over {
|
||||
background-position:-15px -150px;
|
||||
}
|
||||
.x-tool-right {
|
||||
background-position:0 -165px;
|
||||
}
|
||||
.x-tool-right-over {
|
||||
background-position:-15px -165px;
|
||||
}
|
||||
.x-tool-left {
|
||||
background-position:0 -180px;
|
||||
}
|
||||
.x-tool-left-over {
|
||||
background-position:-15px -180px;
|
||||
}
|
||||
.x-tool-up {
|
||||
background-position:0 -210px;
|
||||
}
|
||||
.x-tool-up-over {
|
||||
background-position:-15px -210px;
|
||||
}
|
||||
.x-tool-down {
|
||||
background-position:0 -195px;
|
||||
}
|
||||
.x-tool-down-over {
|
||||
background-position:-15px -195px;
|
||||
}
|
||||
.x-tool-refresh {
|
||||
background-position:0 -225px;
|
||||
}
|
||||
.x-tool-refresh-over {
|
||||
background-position:-15px -225px;
|
||||
}
|
||||
|
||||
.x-tool-minus {
|
||||
background-position:0 -255px;
|
||||
}
|
||||
.x-tool-minus-over {
|
||||
background-position:-15px -255px;
|
||||
}
|
||||
.x-tool-plus {
|
||||
background-position:0 -240px;
|
||||
}
|
||||
.x-tool-plus-over {
|
||||
background-position:-15px -240px;
|
||||
}
|
||||
|
||||
.x-tool-search {
|
||||
background-position:0 -270px;
|
||||
}
|
||||
.x-tool-search-over {
|
||||
background-position:-15px -270px;
|
||||
}
|
||||
.x-tool-save {
|
||||
background-position:0 -285px;
|
||||
}
|
||||
.x-tool-save-over {
|
||||
background-position:-15px -285px;
|
||||
}
|
||||
.x-tool-help {
|
||||
background-position:0 -300px;
|
||||
}
|
||||
.x-tool-help-over {
|
||||
background-position:-15px -300px;
|
||||
}
|
||||
.x-tool-print {
|
||||
background-position:0 -315px;
|
||||
}
|
||||
.x-tool-print-over {
|
||||
background-position:-15px -315px;
|
||||
}
|
||||
|
||||
/* Ghosting */
|
||||
.x-panel-ghost {
|
||||
background:#cbddf3;
|
||||
z-index:12000;
|
||||
overflow:hidden;
|
||||
position:absolute;
|
||||
left:0;top:0;
|
||||
opacity:.65;
|
||||
-moz-opacity:.65;
|
||||
filter:alpha(opacity=65);
|
||||
}
|
||||
|
||||
.x-panel-ghost ul {
|
||||
margin:0;
|
||||
padding:0;
|
||||
overflow:hidden;
|
||||
font-size:0;
|
||||
line-height:0;
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.x-panel-ghost * {
|
||||
cursor:move !important;
|
||||
}
|
||||
|
||||
.x-panel-dd-spacer {
|
||||
border:2px dashed #99bbe8;
|
||||
}
|
||||
/* Buttons */
|
||||
|
||||
.x-panel-btns-ct {
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.x-panel-btns-ct .x-btn{
|
||||
float:right;
|
||||
clear:none;
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns td {
|
||||
border:0;
|
||||
padding:0;
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns-right table{
|
||||
float:right;
|
||||
clear:none;
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns-left table{
|
||||
float:left;
|
||||
clear:none;
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns-center{
|
||||
text-align:center; /*ie*/
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns-center table{
|
||||
margin:0 auto; /*everyone else*/
|
||||
}
|
||||
.x-panel-btns-ct table td.x-panel-btn-td{
|
||||
padding:3px;
|
||||
}
|
||||
|
||||
.x-panel-btns-ct .x-btn-focus .x-btn-left{
|
||||
background-position:0 -147px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-focus .x-btn-right{
|
||||
background-position:0 -168px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-focus .x-btn-center{
|
||||
background-position:0 -189px;
|
||||
}
|
||||
|
||||
.x-panel-btns-ct .x-btn-over .x-btn-left{
|
||||
background-position:0 -63px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-over .x-btn-right{
|
||||
background-position:0 -84px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-over .x-btn-center{
|
||||
background-position:0 -105px;
|
||||
}
|
||||
|
||||
.x-panel-btns-ct .x-btn-click .x-btn-center{
|
||||
background-position:0 -126px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-click .x-btn-right{
|
||||
background-position:0 -84px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-click .x-btn-left{
|
||||
background-position:0 -63px;
|
||||
.x-panel {
|
||||
border-style: solid;
|
||||
border-color: #99bbe8;
|
||||
border-width:0;
|
||||
}
|
||||
|
||||
.x-panel-header {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
color:#15428b;
|
||||
font:bold 11px tahoma,arial,verdana,sans-serif;
|
||||
padding:5px 3px 4px 5px;
|
||||
border:1px solid #99bbe8;
|
||||
line-height: 15px;
|
||||
background: transparent url(../images/default/panel/white-top-bottom.gif) repeat-x 0 -1px;
|
||||
}
|
||||
|
||||
.x-panel-body {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
background:white;
|
||||
position: relative; /* added for item scroll positioning */
|
||||
}
|
||||
|
||||
.x-panel-bbar .x-toolbar {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
|
||||
.x-panel-tbar .x-toolbar {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-panel-tbar-noheader .x-toolbar, .x-panel-mc .x-panel-tbar .x-toolbar {
|
||||
border-top:1px solid #99bbe8;
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
.x-panel-body-noheader, .x-panel-mc .x-panel-body {
|
||||
border-top:1px solid #99bbe8;
|
||||
}
|
||||
.x-panel-header {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-tl .x-panel-header {
|
||||
color:#15428b;
|
||||
font:bold 11px tahoma,arial,verdana,sans-serif;
|
||||
padding:5px 0 4px 0;
|
||||
border:0 none;
|
||||
background:transparent;
|
||||
}
|
||||
.x-panel-tl .x-panel-icon, .x-window-tl .x-panel-icon {
|
||||
padding-left:20px !important;
|
||||
background-repeat:no-repeat;
|
||||
background-position:0 4px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-inline-icon {
|
||||
width:16px;
|
||||
height:16px;
|
||||
background-repeat:no-repeat;
|
||||
background-position:0 0;
|
||||
vertical-align:middle;
|
||||
margin-right:4px;
|
||||
margin-top:-1px;
|
||||
margin-bottom:-1px;
|
||||
}
|
||||
.x-panel-tc {
|
||||
background: transparent url(../images/default/panel/top-bottom.gif) repeat-x 0 0;
|
||||
overflow:hidden;
|
||||
}
|
||||
/* fix ie7 strict mode bug */
|
||||
.ext-strict .ext-ie7 .x-panel-tc {
|
||||
overflow: visible;
|
||||
}
|
||||
.x-panel-tl {
|
||||
background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat 0 0;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
border-bottom:1px solid #99bbe8;
|
||||
}
|
||||
.x-panel-tr {
|
||||
background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat right 0;
|
||||
zoom:1;
|
||||
padding-right:6px;
|
||||
}
|
||||
.x-panel-bc {
|
||||
background: transparent url(../images/default/panel/top-bottom.gif) repeat-x 0 bottom;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-bc .x-panel-footer {
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-panel-bl {
|
||||
background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat 0 bottom;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-br {
|
||||
background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat right bottom;
|
||||
padding-right:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-mc {
|
||||
border:0 none;
|
||||
padding:0;
|
||||
margin:0;
|
||||
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
||||
padding-top:6px;
|
||||
background:#dfe8f6;
|
||||
}
|
||||
.x-panel-mc .x-panel-body {
|
||||
background:transparent;
|
||||
border: 0 none;
|
||||
}
|
||||
.x-panel-ml {
|
||||
background: #fff url(../images/default/panel/left-right.gif) repeat-y 0 0;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-mr {
|
||||
background: transparent url(../images/default/panel/left-right.gif) repeat-y right 0;
|
||||
padding-right:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-bc .x-panel-footer {
|
||||
padding-bottom:6px;
|
||||
}
|
||||
.x-panel-nofooter .x-panel-bc, .x-panel-nofooter .x-window-bc {
|
||||
height:6px;
|
||||
font-size:0;
|
||||
line-height:0;
|
||||
}
|
||||
|
||||
.x-panel-bwrap {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
left:0;top:0;
|
||||
}
|
||||
.x-panel-body {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-panel-collapsed .x-resizable-handle{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.ext-gecko .x-panel-animated div {
|
||||
overflow:hidden !important;
|
||||
}
|
||||
|
||||
/* Plain */
|
||||
.x-plain-body {
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.x-plain-bbar .x-toolbar {
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-plain-tbar .x-toolbar {
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-plain-bwrap {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.x-plain {
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
/* Tools */
|
||||
.x-tool {
|
||||
overflow:hidden;
|
||||
width:15px;
|
||||
height:15px;
|
||||
float:right;
|
||||
cursor:pointer;
|
||||
background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
/* expand / collapse tools */
|
||||
.x-tool-toggle {
|
||||
background-position:0 -60px;
|
||||
}
|
||||
.x-tool-toggle-over {
|
||||
background-position:-15px -60px;
|
||||
}
|
||||
.x-panel-collapsed .x-tool-toggle {
|
||||
background-position:0 -75px;
|
||||
}
|
||||
.x-panel-collapsed .x-tool-toggle-over {
|
||||
background-position:-15px -75px;
|
||||
}
|
||||
|
||||
.x-tool-close {
|
||||
background-position:0 -0;
|
||||
}
|
||||
.x-tool-close-over {
|
||||
background-position:-15px 0;
|
||||
}
|
||||
|
||||
.x-tool-minimize {
|
||||
background-position:0 -15px;
|
||||
}
|
||||
.x-tool-minimize-over {
|
||||
background-position:-15px -15px;
|
||||
}
|
||||
|
||||
.x-tool-maximize {
|
||||
background-position:0 -30px;
|
||||
}
|
||||
.x-tool-maximize-over {
|
||||
background-position:-15px -30px;
|
||||
}
|
||||
|
||||
.x-tool-restore {
|
||||
background-position:0 -45px;
|
||||
}
|
||||
.x-tool-restore-over {
|
||||
background-position:-15px -45px;
|
||||
}
|
||||
|
||||
.x-tool-gear {
|
||||
background-position:0 -90px;
|
||||
}
|
||||
.x-tool-gear-over {
|
||||
background-position:-15px -90px;
|
||||
}
|
||||
|
||||
.x-tool-pin {
|
||||
background-position:0 -135px;
|
||||
}
|
||||
.x-tool-pin-over {
|
||||
background-position:-15px -135px;
|
||||
}
|
||||
.x-tool-unpin {
|
||||
background-position:0 -150px;
|
||||
}
|
||||
.x-tool-unpin-over {
|
||||
background-position:-15px -150px;
|
||||
}
|
||||
.x-tool-right {
|
||||
background-position:0 -165px;
|
||||
}
|
||||
.x-tool-right-over {
|
||||
background-position:-15px -165px;
|
||||
}
|
||||
.x-tool-left {
|
||||
background-position:0 -180px;
|
||||
}
|
||||
.x-tool-left-over {
|
||||
background-position:-15px -180px;
|
||||
}
|
||||
.x-tool-up {
|
||||
background-position:0 -210px;
|
||||
}
|
||||
.x-tool-up-over {
|
||||
background-position:-15px -210px;
|
||||
}
|
||||
.x-tool-down {
|
||||
background-position:0 -195px;
|
||||
}
|
||||
.x-tool-down-over {
|
||||
background-position:-15px -195px;
|
||||
}
|
||||
.x-tool-refresh {
|
||||
background-position:0 -225px;
|
||||
}
|
||||
.x-tool-refresh-over {
|
||||
background-position:-15px -225px;
|
||||
}
|
||||
|
||||
.x-tool-minus {
|
||||
background-position:0 -255px;
|
||||
}
|
||||
.x-tool-minus-over {
|
||||
background-position:-15px -255px;
|
||||
}
|
||||
.x-tool-plus {
|
||||
background-position:0 -240px;
|
||||
}
|
||||
.x-tool-plus-over {
|
||||
background-position:-15px -240px;
|
||||
}
|
||||
|
||||
.x-tool-search {
|
||||
background-position:0 -270px;
|
||||
}
|
||||
.x-tool-search-over {
|
||||
background-position:-15px -270px;
|
||||
}
|
||||
.x-tool-save {
|
||||
background-position:0 -285px;
|
||||
}
|
||||
.x-tool-save-over {
|
||||
background-position:-15px -285px;
|
||||
}
|
||||
.x-tool-help {
|
||||
background-position:0 -300px;
|
||||
}
|
||||
.x-tool-help-over {
|
||||
background-position:-15px -300px;
|
||||
}
|
||||
.x-tool-print {
|
||||
background-position:0 -315px;
|
||||
}
|
||||
.x-tool-print-over {
|
||||
background-position:-15px -315px;
|
||||
}
|
||||
|
||||
/* Ghosting */
|
||||
.x-panel-ghost {
|
||||
background:#cbddf3;
|
||||
z-index:12000;
|
||||
overflow:hidden;
|
||||
position:absolute;
|
||||
left:0;top:0;
|
||||
opacity:.65;
|
||||
-moz-opacity:.65;
|
||||
filter:alpha(opacity=65);
|
||||
}
|
||||
|
||||
.x-panel-ghost ul {
|
||||
margin:0;
|
||||
padding:0;
|
||||
overflow:hidden;
|
||||
font-size:0;
|
||||
line-height:0;
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.x-panel-ghost * {
|
||||
cursor:move !important;
|
||||
}
|
||||
|
||||
.x-panel-dd-spacer {
|
||||
border:2px dashed #99bbe8;
|
||||
}
|
||||
/* Buttons */
|
||||
|
||||
.x-panel-btns-ct {
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.x-panel-btns-ct .x-btn{
|
||||
float:right;
|
||||
clear:none;
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns td {
|
||||
border:0;
|
||||
padding:0;
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns-right table{
|
||||
float:right;
|
||||
clear:none;
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns-left table{
|
||||
float:left;
|
||||
clear:none;
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns-center{
|
||||
text-align:center; /*ie*/
|
||||
}
|
||||
.x-panel-btns-ct .x-panel-btns-center table{
|
||||
margin:0 auto; /*everyone else*/
|
||||
}
|
||||
.x-panel-btns-ct table td.x-panel-btn-td{
|
||||
padding:3px;
|
||||
}
|
||||
|
||||
.x-panel-btns-ct .x-btn-focus .x-btn-left{
|
||||
background-position:0 -147px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-focus .x-btn-right{
|
||||
background-position:0 -168px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-focus .x-btn-center{
|
||||
background-position:0 -189px;
|
||||
}
|
||||
|
||||
.x-panel-btns-ct .x-btn-over .x-btn-left{
|
||||
background-position:0 -63px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-over .x-btn-right{
|
||||
background-position:0 -84px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-over .x-btn-center{
|
||||
background-position:0 -105px;
|
||||
}
|
||||
|
||||
.x-panel-btns-ct .x-btn-click .x-btn-center{
|
||||
background-position:0 -126px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-click .x-btn-right{
|
||||
background-position:0 -84px;
|
||||
}
|
||||
.x-panel-btns-ct .x-btn-click .x-btn-left{
|
||||
background-position:0 -63px;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
90
WebWidgets/ExtJS/testsuite/bin/resources/css/slider.css
Normal file
@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
/* Shared styles */
|
||||
.x-slider {
|
||||
zoom:1;
|
||||
}
|
||||
.x-slider-inner {
|
||||
position:relative;
|
||||
left:0;
|
||||
top:0;
|
||||
overflow:visible;
|
||||
zoom:1;
|
||||
}
|
||||
.x-slider-focus {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
width:1px;
|
||||
height:1px;
|
||||
line-height:1px;
|
||||
font-size:1px;
|
||||
-moz-outline:0 none;
|
||||
outline:0 none;
|
||||
-moz-user-select: text;
|
||||
-khtml-user-select: text;
|
||||
}
|
||||
|
||||
/* Horizontal styles */
|
||||
.x-slider-horz {
|
||||
padding-left:7px;
|
||||
background:transparent url(../images/default/slider/slider-bg.png) no-repeat 0 -22px;
|
||||
}
|
||||
.x-slider-horz .x-slider-end {
|
||||
padding-right:7px;
|
||||
zoom:1;
|
||||
background:transparent url(../images/default/slider/slider-bg.png) no-repeat right -44px;
|
||||
}
|
||||
.x-slider-horz .x-slider-inner {
|
||||
background:transparent url(../images/default/slider/slider-bg.png) repeat-x 0 0;
|
||||
height:22px;
|
||||
}
|
||||
.x-slider-horz .x-slider-thumb {
|
||||
width:14px;
|
||||
height:15px;
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:3px;
|
||||
background:transparent url(../images/default/slider/slider-thumb.png) no-repeat 0 0;
|
||||
}
|
||||
.x-slider-horz .x-slider-thumb-over {
|
||||
background-position: -14px -15px;
|
||||
}
|
||||
.x-slider-horz .x-slider-thumb-drag {
|
||||
background-position: -28px -30px;
|
||||
}
|
||||
|
||||
/* Vertical styles */
|
||||
.x-slider-vert {
|
||||
padding-top:7px;
|
||||
background:transparent url(../images/default/slider/slider-v-bg.png) no-repeat -44px 0;
|
||||
width:22px;
|
||||
}
|
||||
.x-slider-vert .x-slider-end {
|
||||
padding-bottom:7px;
|
||||
zoom:1;
|
||||
background:transparent url(../images/default/slider/slider-v-bg.png) no-repeat -22px bottom;
|
||||
}
|
||||
.x-slider-vert .x-slider-inner {
|
||||
background:transparent url(../images/default/slider/slider-v-bg.png) repeat-y 0 0;
|
||||
}
|
||||
.x-slider-vert .x-slider-thumb {
|
||||
width:15px;
|
||||
height:14px;
|
||||
position:absolute;
|
||||
left:3px;
|
||||
bottom:0;
|
||||
background:transparent url(../images/default/slider/slider-v-thumb.png) no-repeat 0 0;
|
||||
}
|
||||
.x-slider-vert .x-slider-thumb-over {
|
||||
background-position: -15px -14px;
|
||||
}
|
||||
.x-slider-vert .x-slider-thumb-drag {
|
||||
background-position: -30px -28px;
|
||||
}
|
@ -1,345 +1,358 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
.x-tab-panel {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-tab-panel-header, .x-tab-panel-footer {
|
||||
background: #deecfd;
|
||||
border: 1px solid #8db2e3;
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
|
||||
.x-tab-panel-header {
|
||||
border: 1px solid #8db2e3;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
.x-tab-panel-footer {
|
||||
border: 1px solid #8db2e3;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
|
||||
.x-tab-strip-wrap {
|
||||
width:100%;
|
||||
overflow:hidden;
|
||||
position:relative;
|
||||
zoom:1;
|
||||
}
|
||||
ul.x-tab-strip {
|
||||
display:block;
|
||||
width:5000px;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
ul.x-tab-strip-top{
|
||||
padding-top: 1px;
|
||||
background: url(../images/default/tabs/tab-strip-bg.gif) #cedff5 repeat-x bottom;
|
||||
border-bottom: 1px solid #8db2e3;
|
||||
}
|
||||
|
||||
ul.x-tab-strip-bottom{
|
||||
padding-bottom: 1px;
|
||||
background: url(../images/default/tabs/tab-strip-btm-bg.gif) #cedff5 repeat-x top;
|
||||
border-top: 1px solid #8db2e3;
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
|
||||
.x-tab-panel-header-plain .x-tab-strip-top {
|
||||
background:transparent !important;
|
||||
padding-top:0 !important;
|
||||
}
|
||||
.x-tab-panel-header-plain {
|
||||
background:transparent !important;
|
||||
border-width:0 !important;
|
||||
padding-bottom:0 !important;
|
||||
}
|
||||
|
||||
.x-tab-panel-header-plain .x-tab-strip-spacer {
|
||||
border:1px solid #8db2e3;
|
||||
border-top: 0 none;
|
||||
height:2px;
|
||||
background: #deecfd;
|
||||
font-size:1px;
|
||||
line-height:1px;
|
||||
}
|
||||
|
||||
.ext-border-box .x-tab-panel-header-plain .x-tab-strip-spacer {
|
||||
height:3px;
|
||||
}
|
||||
|
||||
|
||||
ul.x-tab-strip li {
|
||||
float:left;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
|
||||
ul.x-tab-strip li.x-tab-edge {
|
||||
float:left;
|
||||
margin:0 !important;
|
||||
padding:0 !important;
|
||||
border:0 none !important;
|
||||
font-size:1px !important;
|
||||
line-height:1px !important;
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
background:transparent !important;
|
||||
width:1px;
|
||||
}
|
||||
|
||||
.x-tab-strip a, .x-tab-strip span, .x-tab-strip em {
|
||||
display:block;
|
||||
}
|
||||
|
||||
.x-tab-strip a {
|
||||
text-decoration:none !important;
|
||||
-moz-outline: none;
|
||||
outline: none;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.x-tab-strip-inner {
|
||||
overflow:hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.x-tab-strip span.x-tab-strip-text {
|
||||
font:normal 11px tahoma,arial,helvetica;
|
||||
color:#416aa3;
|
||||
white-space: nowrap;
|
||||
cursor:pointer;
|
||||
padding:4px 0;
|
||||
}
|
||||
.x-tab-strip .x-tab-with-icon .x-tab-right {
|
||||
padding-left:6px;
|
||||
}
|
||||
.x-tab-strip .x-tab-with-icon span.x-tab-strip-text {
|
||||
padding-left:20px;
|
||||
background-position: 0 3px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.x-tab-strip-over span.x-tab-strip-text {
|
||||
color:#15428b;
|
||||
}
|
||||
|
||||
.x-tab-strip-active {
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
.x-tab-strip-active span.x-tab-strip-text {
|
||||
cursor:default;
|
||||
color:#15428b;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.x-tab-strip-disabled .x-tabs-text {
|
||||
cursor:default;
|
||||
color:#aaaaaa;
|
||||
}
|
||||
|
||||
.x-tab-panel-body {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-tab-panel-bwrap {
|
||||
overflow:hidden;
|
||||
}
|
||||
.ext-ie .x-tab-strip .x-tab-right {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-right {
|
||||
margin-bottom:-1px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
|
||||
padding-bottom:5px;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
|
||||
margin-top:-1px;
|
||||
}
|
||||
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
|
||||
padding-top:5px;
|
||||
}
|
||||
|
||||
|
||||
.x-tab-strip-top .x-tab-right {
|
||||
background: transparent url(../images/default/tabs/tabs-sprite.gif) no-repeat 0 -51px;
|
||||
padding-left:10px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-left {
|
||||
background: transparent url(../images/default/tabs/tabs-sprite.gif) no-repeat right -351px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-inner {
|
||||
background: transparent url(../images/default/tabs/tabs-sprite.gif) repeat-x 0 -201px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-over .x-tab-right {
|
||||
background-position:0 -101px;
|
||||
}
|
||||
.x-tab-strip-top .x-tab-strip-over .x-tab-left {
|
||||
background-position:right -401px;
|
||||
}
|
||||
.x-tab-strip-top .x-tab-strip-over .x-tab-strip-inner {
|
||||
background-position:0 -251px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-right {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-left {
|
||||
background-position: right -301px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-strip-inner {
|
||||
background-position: 0 -151px;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-right {
|
||||
background: url(../images/default/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom right;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-left {
|
||||
background: url(../images/default/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom left;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
|
||||
background: url(../images/default/tabs/tab-btm-right-bg.gif) no-repeat bottom left;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
|
||||
background: url(../images/default/tabs/tab-btm-left-bg.gif) no-repeat bottom right;
|
||||
}
|
||||
.x-tab-strip-bottom .x-tab-left {
|
||||
padding:0 10px;
|
||||
}
|
||||
.x-tab-strip-bottom .x-tab-right {
|
||||
padding:0;
|
||||
}
|
||||
.x-tab-strip .x-tab-strip-close {
|
||||
display:none;
|
||||
}
|
||||
.x-tab-strip-closable {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.x-tab-strip-closable .x-tab-left {
|
||||
padding-right:19px;
|
||||
}
|
||||
|
||||
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
|
||||
background-image:url(../images/default/tabs/tab-close.gif);
|
||||
opacity:.6;
|
||||
-moz-opacity:.6;
|
||||
background-repeat:no-repeat;
|
||||
display:block;
|
||||
width:11px;height:11px;
|
||||
position:absolute;
|
||||
top:3px;
|
||||
right:3px;
|
||||
cursor:pointer;
|
||||
z-index:2;
|
||||
}
|
||||
|
||||
.x-tab-strip .x-tab-strip-active a.x-tab-strip-close {
|
||||
opacity:.8;
|
||||
-moz-opacity:.8;
|
||||
}
|
||||
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{
|
||||
background-image:url(../images/default/tabs/tab-close.gif);
|
||||
opacity:1;
|
||||
-moz-opacity:1;
|
||||
}
|
||||
|
||||
.x-tab-panel-body {
|
||||
border: 1px solid #8db2e3;
|
||||
background:#fff;
|
||||
}
|
||||
.x-tab-panel-body-top {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.x-tab-panel-body-bottom {
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
|
||||
.x-tab-scroller-left {
|
||||
background: transparent url(../images/default/tabs/scroll-left.gif) no-repeat -18px 0;
|
||||
border-bottom: 1px solid #8db2e3;
|
||||
width:18px;
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
z-index:10;
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-tab-scroller-left-over {
|
||||
background-position: 0 0;
|
||||
}
|
||||
.x-tab-scroller-left-disabled {
|
||||
background-position: -18px 0;
|
||||
opacity:.5;
|
||||
-moz-opacity:.5;
|
||||
filter:alpha(opacity=50);
|
||||
cursor:default;
|
||||
}
|
||||
.x-tab-scroller-right {
|
||||
background: transparent url(../images/default/tabs/scroll-right.gif) no-repeat 0 0;
|
||||
border-bottom: 1px solid #8db2e3;
|
||||
width:18px;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
z-index:10;
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-tab-scroller-right-over {
|
||||
background-position: -18px 0;
|
||||
}
|
||||
.x-tab-scroller-right-disabled {
|
||||
background-position: 0 0;
|
||||
opacity:.5;
|
||||
-moz-opacity:.5;
|
||||
filter:alpha(opacity=50);
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
.x-tab-scrolling .x-tab-strip-wrap {
|
||||
margin-left:18px;
|
||||
margin-right:18px;
|
||||
}
|
||||
|
||||
.x-tab-scrolling {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.x-tab-panel-bbar .x-toolbar {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-tab-panel-tbar .x-toolbar {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-border-layout-ct .x-tab-panel {
|
||||
background: white;
|
||||
.x-tab-panel {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-tab-panel-header, .x-tab-panel-footer {
|
||||
background: #deecfd;
|
||||
border: 1px solid #8db2e3;
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
|
||||
.x-tab-panel-header {
|
||||
border: 1px solid #8db2e3;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
.x-tab-panel-footer {
|
||||
border: 1px solid #8db2e3;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
|
||||
.x-tab-strip-wrap {
|
||||
width:100%;
|
||||
overflow:hidden;
|
||||
position:relative;
|
||||
zoom:1;
|
||||
}
|
||||
ul.x-tab-strip {
|
||||
display:block;
|
||||
width:5000px;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
ul.x-tab-strip-top{
|
||||
padding-top: 1px;
|
||||
background: url(../images/default/tabs/tab-strip-bg.gif) #cedff5 repeat-x bottom;
|
||||
border-bottom: 1px solid #8db2e3;
|
||||
}
|
||||
|
||||
ul.x-tab-strip-bottom{
|
||||
padding-bottom: 1px;
|
||||
background: url(../images/default/tabs/tab-strip-btm-bg.gif) #cedff5 repeat-x top;
|
||||
border-top: 1px solid #8db2e3;
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
|
||||
.x-tab-panel-header-plain .x-tab-strip-top {
|
||||
background:transparent !important;
|
||||
padding-top:0 !important;
|
||||
}
|
||||
.x-tab-panel-header-plain {
|
||||
background:transparent !important;
|
||||
border-width:0 !important;
|
||||
padding-bottom:0 !important;
|
||||
}
|
||||
|
||||
.x-tab-panel-header-plain .x-tab-strip-spacer,
|
||||
.x-tab-panel-footer-plain .x-tab-strip-spacer {
|
||||
border:1px solid #8db2e3;
|
||||
height:2px;
|
||||
background: #deecfd;
|
||||
font-size:1px;
|
||||
line-height:1px;
|
||||
}
|
||||
.x-tab-panel-header-plain .x-tab-strip-spacer {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.x-tab-panel-footer-plain .x-tab-strip-spacer {
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
|
||||
.x-tab-panel-footer-plain .x-tab-strip-bottom {
|
||||
background:transparent !important;
|
||||
padding-bottom:0 !important;
|
||||
}
|
||||
.x-tab-panel-footer-plain {
|
||||
background:transparent !important;
|
||||
border-width:0 !important;
|
||||
padding-top:0 !important;
|
||||
}
|
||||
|
||||
.ext-border-box .x-tab-panel-header-plain .x-tab-strip-spacer,
|
||||
.ext-border-box .x-tab-panel-footer-plain .x-tab-strip-spacer {
|
||||
height:3px;
|
||||
}
|
||||
|
||||
|
||||
ul.x-tab-strip li {
|
||||
float:left;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
|
||||
ul.x-tab-strip li.x-tab-edge {
|
||||
float:left;
|
||||
margin:0 !important;
|
||||
padding:0 !important;
|
||||
border:0 none !important;
|
||||
font-size:1px !important;
|
||||
line-height:1px !important;
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
background:transparent !important;
|
||||
width:1px;
|
||||
}
|
||||
|
||||
.x-tab-strip a, .x-tab-strip span, .x-tab-strip em {
|
||||
display:block;
|
||||
}
|
||||
|
||||
.x-tab-strip a {
|
||||
text-decoration:none !important;
|
||||
-moz-outline: none;
|
||||
outline: none;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.x-tab-strip-inner {
|
||||
overflow:hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.x-tab-strip span.x-tab-strip-text {
|
||||
font:normal 11px tahoma,arial,helvetica;
|
||||
color:#416aa3;
|
||||
white-space: nowrap;
|
||||
cursor:pointer;
|
||||
padding:4px 0;
|
||||
}
|
||||
.x-tab-strip-top .x-tab-with-icon .x-tab-right {
|
||||
padding-left:6px;
|
||||
}
|
||||
.x-tab-strip .x-tab-with-icon span.x-tab-strip-text {
|
||||
padding-left:20px;
|
||||
background-position: 0 3px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.x-tab-strip-over span.x-tab-strip-text {
|
||||
color:#15428b;
|
||||
}
|
||||
|
||||
.x-tab-strip-active, .x-tab-strip-active a.x-tab-right {
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
.x-tab-strip-active span.x-tab-strip-text {
|
||||
cursor:default;
|
||||
color:#15428b;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.x-tab-strip-disabled .x-tabs-text {
|
||||
cursor:default;
|
||||
color:#aaaaaa;
|
||||
}
|
||||
|
||||
.x-tab-panel-body {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-tab-panel-bwrap {
|
||||
overflow:hidden;
|
||||
}
|
||||
.ext-ie .x-tab-strip .x-tab-right {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-right {
|
||||
margin-bottom:-1px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
|
||||
padding-bottom:5px;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
|
||||
margin-top:-1px;
|
||||
}
|
||||
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
|
||||
padding-top:5px;
|
||||
}
|
||||
|
||||
|
||||
.x-tab-strip-top .x-tab-right {
|
||||
background: transparent url(../images/default/tabs/tabs-sprite.gif) no-repeat 0 -51px;
|
||||
padding-left:10px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-left {
|
||||
background: transparent url(../images/default/tabs/tabs-sprite.gif) no-repeat right -351px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-inner {
|
||||
background: transparent url(../images/default/tabs/tabs-sprite.gif) repeat-x 0 -201px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-over .x-tab-right {
|
||||
background-position:0 -101px;
|
||||
}
|
||||
.x-tab-strip-top .x-tab-strip-over .x-tab-left {
|
||||
background-position:right -401px;
|
||||
}
|
||||
.x-tab-strip-top .x-tab-strip-over .x-tab-strip-inner {
|
||||
background-position:0 -251px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-right {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-left {
|
||||
background-position: right -301px;
|
||||
}
|
||||
|
||||
.x-tab-strip-top .x-tab-strip-active .x-tab-strip-inner {
|
||||
background-position: 0 -151px;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-right {
|
||||
background: url(../images/default/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom right;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-left {
|
||||
background: url(../images/default/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom left;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
|
||||
background: url(../images/default/tabs/tab-btm-right-bg.gif) no-repeat bottom left;
|
||||
}
|
||||
|
||||
.x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
|
||||
background: url(../images/default/tabs/tab-btm-left-bg.gif) no-repeat bottom right;
|
||||
}
|
||||
.x-tab-strip-bottom .x-tab-left {
|
||||
padding:0 10px;
|
||||
}
|
||||
.x-tab-strip-bottom .x-tab-right {
|
||||
padding:0;
|
||||
}
|
||||
.x-tab-strip .x-tab-strip-close {
|
||||
display:none;
|
||||
}
|
||||
.x-tab-strip-closable {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.x-tab-strip-closable .x-tab-left {
|
||||
padding-right:19px;
|
||||
}
|
||||
|
||||
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
|
||||
background-image:url(../images/default/tabs/tab-close.gif);
|
||||
opacity:.6;
|
||||
-moz-opacity:.6;
|
||||
background-repeat:no-repeat;
|
||||
display:block;
|
||||
width:11px;height:11px;
|
||||
position:absolute;
|
||||
top:3px;
|
||||
right:3px;
|
||||
cursor:pointer;
|
||||
z-index:2;
|
||||
}
|
||||
|
||||
.x-tab-strip .x-tab-strip-active a.x-tab-strip-close {
|
||||
opacity:.8;
|
||||
-moz-opacity:.8;
|
||||
}
|
||||
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{
|
||||
background-image:url(../images/default/tabs/tab-close.gif);
|
||||
opacity:1;
|
||||
-moz-opacity:1;
|
||||
}
|
||||
|
||||
.x-tab-panel-body {
|
||||
border: 1px solid #8db2e3;
|
||||
background:#fff;
|
||||
}
|
||||
.x-tab-panel-body-top {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.x-tab-panel-body-bottom {
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
|
||||
.x-tab-scroller-left {
|
||||
background: transparent url(../images/default/tabs/scroll-left.gif) no-repeat -18px 0;
|
||||
border-bottom: 1px solid #8db2e3;
|
||||
width:18px;
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
z-index:10;
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-tab-scroller-left-over {
|
||||
background-position: 0 0;
|
||||
}
|
||||
.x-tab-scroller-left-disabled {
|
||||
background-position: -18px 0;
|
||||
opacity:.5;
|
||||
-moz-opacity:.5;
|
||||
filter:alpha(opacity=50);
|
||||
cursor:default;
|
||||
}
|
||||
.x-tab-scroller-right {
|
||||
background: transparent url(../images/default/tabs/scroll-right.gif) no-repeat 0 0;
|
||||
border-bottom: 1px solid #8db2e3;
|
||||
width:18px;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
z-index:10;
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-tab-scroller-right-over {
|
||||
background-position: -18px 0;
|
||||
}
|
||||
.x-tab-scroller-right-disabled {
|
||||
background-position: 0 0;
|
||||
opacity:.5;
|
||||
-moz-opacity:.5;
|
||||
filter:alpha(opacity=50);
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
.x-tab-scrolling .x-tab-strip-wrap {
|
||||
margin-left:18px;
|
||||
margin-right:18px;
|
||||
}
|
||||
|
||||
.x-tab-scrolling {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.x-tab-panel-bbar .x-toolbar {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.x-tab-panel-tbar .x-toolbar {
|
||||
border:1px solid #99bbe8;
|
||||
border-top:0 none;
|
||||
overflow:hidden;
|
||||
padding:2px;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
@ -129,7 +129,7 @@
|
||||
background-image: url(../images/default/grid/page-first.gif) !important;
|
||||
}
|
||||
.x-tbar-loading{
|
||||
background-image: url(../images/default/grid/done.gif) !important;
|
||||
background-image: url(../images/default/grid/refresh.gif) !important;
|
||||
}
|
||||
.x-tbar-page-last{
|
||||
background-image: url(../images/default/grid/page-last.gif) !important;
|
||||
@ -161,3 +161,23 @@
|
||||
right: 8px;
|
||||
color:#444;
|
||||
}
|
||||
|
||||
/* StatusBar */
|
||||
|
||||
.x-statusbar .x-status-text {
|
||||
height: 21px;
|
||||
line-height: 21px;
|
||||
padding: 0 4px;
|
||||
cursor: default;
|
||||
}
|
||||
.x-statusbar .x-status-busy {
|
||||
padding-left: 25px;
|
||||
background: transparent url(../images/default/grid/loading.gif) no-repeat 3px 3px;
|
||||
}
|
||||
.x-statusbar .x-status-text-panel {
|
||||
border-top: 1px solid #99BBE8;
|
||||
border-right: 1px solid #fff;
|
||||
border-bottom: 1px solid #fff;
|
||||
border-left: 1px solid #99BBE8;
|
||||
padding: 2px 8px 2px 5px;
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
@ -248,3 +248,7 @@ input.x-tree-node-cb {
|
||||
.x-tree-drop-ok-between .x-dd-drop-icon{
|
||||
background-image: url(../images/default/tree/drop-between.gif);
|
||||
}
|
||||
/* Fix for ie rootVisible:false issue */
|
||||
.x-tree-root-ct {
|
||||
zoom:1;
|
||||
}
|
||||
|
@ -1,210 +1,208 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
* http://extjs.com/license
|
||||
*/
|
||||
|
||||
.x-window {
|
||||
zoom:1;
|
||||
}
|
||||
.x-window .x-resizable-handle {
|
||||
opacity:0;
|
||||
-moz-opacity:0;
|
||||
filter:alpha(opacity=0);
|
||||
}
|
||||
|
||||
.x-window-proxy {
|
||||
background:#C7DFFC;
|
||||
border:1px solid #99bbe8;
|
||||
z-index:12000;
|
||||
overflow:hidden;
|
||||
position:absolute;
|
||||
left:0;top:0;
|
||||
display:none;
|
||||
opacity:.5;
|
||||
-moz-opacity:.5;
|
||||
filter:alpha(opacity=50);
|
||||
}
|
||||
|
||||
.x-window-header {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-bwrap {
|
||||
z-index:1;
|
||||
position:relative;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-tl .x-window-header {
|
||||
color:#15428b;
|
||||
font:bold 11px tahoma,arial,verdana,sans-serif;
|
||||
padding:5px 0 4px 0;
|
||||
}
|
||||
.x-window-header-text {
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-window-tc {
|
||||
background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 0;
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-tl {
|
||||
background: transparent url(../images/default/window/left-corners.png) no-repeat 0 0;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
z-index:1;
|
||||
position:relative;
|
||||
}
|
||||
.x-window-tr {
|
||||
background: transparent url(../images/default/window/right-corners.png) no-repeat right 0;
|
||||
padding-right:6px;
|
||||
}
|
||||
.x-window-bc {
|
||||
background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 bottom;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-bc .x-window-footer {
|
||||
padding-bottom:6px;
|
||||
zoom:1;
|
||||
font-size:0;
|
||||
line-height:0;
|
||||
}
|
||||
.x-window-bl {
|
||||
background: transparent url(../images/default/window/left-corners.png) no-repeat 0 bottom;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-br {
|
||||
background: transparent url(../images/default/window/right-corners.png) no-repeat right bottom;
|
||||
padding-right:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-mc {
|
||||
border:1px solid #99bbe8;
|
||||
padding:0;
|
||||
margin:0;
|
||||
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
||||
background:#dfe8f6;
|
||||
}
|
||||
|
||||
|
||||
.x-window-ml {
|
||||
background: transparent url(../images/default/window/left-right.png) repeat-y 0 0;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-mr {
|
||||
background: transparent url(../images/default/window/left-right.png) repeat-y right 0;
|
||||
padding-right:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-panel-nofooter .x-window-bc {
|
||||
height:6px;
|
||||
}
|
||||
.x-window-body {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-window-bwrap {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-window-maximized .x-window-bl, .x-window-maximized .x-window-br,
|
||||
.x-window-maximized .x-window-ml, .x-window-maximized .x-window-mr,
|
||||
.x-window-maximized .x-window-tl, .x-window-maximized .x-window-tr {
|
||||
padding:0;
|
||||
}
|
||||
.x-window-maximized .x-window-footer {
|
||||
padding-bottom:0;
|
||||
}
|
||||
.x-window-maximized .x-window-tc {
|
||||
padding-left:3px;
|
||||
padding-right:3px;
|
||||
background-color:white;
|
||||
}
|
||||
.x-window-maximized .x-window-mc {
|
||||
border-left:0 none;
|
||||
border-right:0 none;
|
||||
}
|
||||
.x-window-tbar .x-toolbar, .x-window-bbar .x-toolbar {
|
||||
border-left:0 none;
|
||||
border-right: 0 none;
|
||||
}
|
||||
.x-window-bbar .x-toolbar {
|
||||
border-top:1px solid #99bbe8;
|
||||
border-bottom:0 none;
|
||||
}
|
||||
.x-window-draggable, .x-window-draggable .x-window-header-text {
|
||||
cursor:move;
|
||||
}
|
||||
.x-window-maximized .x-window-draggable, .x-window-maximized .x-window-draggable .x-window-header-text {
|
||||
cursor:default;
|
||||
}
|
||||
.x-window-body {
|
||||
background:transparent;
|
||||
}
|
||||
.x-panel-ghost .x-window-tl {
|
||||
border-bottom:1px solid #99bbe8;
|
||||
}
|
||||
.x-panel-collapsed .x-window-tl {
|
||||
border-bottom:1px solid #84a0c4;
|
||||
}
|
||||
.x-window-maximized-ct {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-window-maximized .x-resizable-handle {
|
||||
display:none;
|
||||
}
|
||||
.x-window-sizing-ghost ul {
|
||||
border:0 none !important;
|
||||
}
|
||||
|
||||
|
||||
.x-dlg-focus{
|
||||
-moz-outline:0 none;
|
||||
outline:0 none;
|
||||
width:0;
|
||||
height:0;
|
||||
overflow:hidden;
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
}
|
||||
.x-dlg-mask{
|
||||
z-index:10000;
|
||||
display:none;
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
-moz-opacity: 0.5;
|
||||
opacity:.50;
|
||||
filter: alpha(opacity=50);
|
||||
background-color:#CCC;
|
||||
}
|
||||
|
||||
body.ext-ie6.x-body-masked select {
|
||||
visibility:hidden;
|
||||
}
|
||||
body.ext-ie6.x-body-masked .x-window select {
|
||||
visibility:visible;
|
||||
}
|
||||
|
||||
.x-window-plain .x-window-mc {
|
||||
background: #CAD9EC;
|
||||
border-right:1px solid #DFE8F6;
|
||||
border-bottom:1px solid #DFE8F6;
|
||||
border-top:1px solid #a3bae9;
|
||||
border-left:1px solid #a3bae9;
|
||||
}
|
||||
|
||||
.x-window-plain .x-window-body {
|
||||
border-left:1px solid #DFE8F6;
|
||||
border-top:1px solid #DFE8F6;
|
||||
border-bottom:1px solid #a3bae9;
|
||||
border-right:1px solid #a3bae9;
|
||||
background:transparent !important;
|
||||
}
|
||||
|
||||
body.x-body-masked .x-window-plain .x-window-mc {
|
||||
background: #C7D6E9;
|
||||
.x-window {
|
||||
zoom:1;
|
||||
}
|
||||
.x-window .x-resizable-handle {
|
||||
opacity:0;
|
||||
-moz-opacity:0;
|
||||
filter:alpha(opacity=0);
|
||||
}
|
||||
|
||||
.x-window-proxy {
|
||||
background:#C7DFFC;
|
||||
border:1px solid #99bbe8;
|
||||
z-index:12000;
|
||||
overflow:hidden;
|
||||
position:absolute;
|
||||
left:0;top:0;
|
||||
display:none;
|
||||
opacity:.5;
|
||||
-moz-opacity:.5;
|
||||
filter:alpha(opacity=50);
|
||||
}
|
||||
|
||||
.x-window-header {
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-bwrap {
|
||||
z-index:1;
|
||||
position:relative;
|
||||
zoom:1;
|
||||
left:0;top:0;
|
||||
}
|
||||
.x-window-tl .x-window-header {
|
||||
color:#15428b;
|
||||
font:bold 11px tahoma,arial,verdana,sans-serif;
|
||||
padding:5px 0 4px 0;
|
||||
}
|
||||
.x-window-header-text {
|
||||
cursor:pointer;
|
||||
}
|
||||
.x-window-tc {
|
||||
background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 0;
|
||||
overflow:hidden;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-tl {
|
||||
background: transparent url(../images/default/window/left-corners.png) no-repeat 0 0;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
z-index:1;
|
||||
position:relative;
|
||||
}
|
||||
.x-window-tr {
|
||||
background: transparent url(../images/default/window/right-corners.png) no-repeat right 0;
|
||||
padding-right:6px;
|
||||
}
|
||||
.x-window-bc {
|
||||
background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 bottom;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-bc .x-window-footer {
|
||||
padding-bottom:6px;
|
||||
zoom:1;
|
||||
font-size:0;
|
||||
line-height:0;
|
||||
}
|
||||
.x-window-bl {
|
||||
background: transparent url(../images/default/window/left-corners.png) no-repeat 0 bottom;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-br {
|
||||
background: transparent url(../images/default/window/right-corners.png) no-repeat right bottom;
|
||||
padding-right:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-mc {
|
||||
border:1px solid #99bbe8;
|
||||
padding:0;
|
||||
margin:0;
|
||||
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
||||
background:#dfe8f6;
|
||||
}
|
||||
|
||||
|
||||
.x-window-ml {
|
||||
background: transparent url(../images/default/window/left-right.png) repeat-y 0 0;
|
||||
padding-left:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-mr {
|
||||
background: transparent url(../images/default/window/left-right.png) repeat-y right 0;
|
||||
padding-right:6px;
|
||||
zoom:1;
|
||||
}
|
||||
.x-window-body {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-window-bwrap {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-window-maximized .x-window-bl, .x-window-maximized .x-window-br,
|
||||
.x-window-maximized .x-window-ml, .x-window-maximized .x-window-mr,
|
||||
.x-window-maximized .x-window-tl, .x-window-maximized .x-window-tr {
|
||||
padding:0;
|
||||
}
|
||||
.x-window-maximized .x-window-footer {
|
||||
padding-bottom:0;
|
||||
}
|
||||
.x-window-maximized .x-window-tc {
|
||||
padding-left:3px;
|
||||
padding-right:3px;
|
||||
background-color:white;
|
||||
}
|
||||
.x-window-maximized .x-window-mc {
|
||||
border-left:0 none;
|
||||
border-right:0 none;
|
||||
}
|
||||
.x-window-tbar .x-toolbar, .x-window-bbar .x-toolbar {
|
||||
border-left:0 none;
|
||||
border-right: 0 none;
|
||||
}
|
||||
.x-window-bbar .x-toolbar {
|
||||
border-top:1px solid #99bbe8;
|
||||
border-bottom:0 none;
|
||||
}
|
||||
.x-window-draggable, .x-window-draggable .x-window-header-text {
|
||||
cursor:move;
|
||||
}
|
||||
.x-window-maximized .x-window-draggable, .x-window-maximized .x-window-draggable .x-window-header-text {
|
||||
cursor:default;
|
||||
}
|
||||
.x-window-body {
|
||||
background:transparent;
|
||||
}
|
||||
.x-panel-ghost .x-window-tl {
|
||||
border-bottom:1px solid #99bbe8;
|
||||
}
|
||||
.x-panel-collapsed .x-window-tl {
|
||||
border-bottom:1px solid #84a0c4;
|
||||
}
|
||||
.x-window-maximized-ct {
|
||||
overflow:hidden;
|
||||
}
|
||||
.x-window-maximized .x-resizable-handle {
|
||||
display:none;
|
||||
}
|
||||
.x-window-sizing-ghost ul {
|
||||
border:0 none !important;
|
||||
}
|
||||
|
||||
|
||||
.x-dlg-focus{
|
||||
-moz-outline:0 none;
|
||||
outline:0 none;
|
||||
width:0;
|
||||
height:0;
|
||||
overflow:hidden;
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
}
|
||||
.x-dlg-mask{
|
||||
z-index:10000;
|
||||
display:none;
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
-moz-opacity: 0.5;
|
||||
opacity:.50;
|
||||
filter: alpha(opacity=50);
|
||||
background-color:#CCC;
|
||||
}
|
||||
|
||||
body.ext-ie6.x-body-masked select {
|
||||
visibility:hidden;
|
||||
}
|
||||
body.ext-ie6.x-body-masked .x-window select {
|
||||
visibility:visible;
|
||||
}
|
||||
|
||||
.x-window-plain .x-window-mc {
|
||||
background: #CAD9EC;
|
||||
border-right:1px solid #DFE8F6;
|
||||
border-bottom:1px solid #DFE8F6;
|
||||
border-top:1px solid #a3bae9;
|
||||
border-left:1px solid #a3bae9;
|
||||
}
|
||||
|
||||
.x-window-plain .x-window-body {
|
||||
border-left:1px solid #DFE8F6;
|
||||
border-top:1px solid #DFE8F6;
|
||||
border-bottom:1px solid #a3bae9;
|
||||
border-right:1px solid #a3bae9;
|
||||
background:transparent !important;
|
||||
}
|
||||
|
||||
body.x-body-masked .x-window-plain .x-window-mc {
|
||||
background: #C7D6E9;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Ext JS Library 2.0.2
|
||||
* Ext JS Library 2.2
|
||||
* Copyright(c) 2006-2008, Ext JS, LLC.
|
||||
* licensing@extjs.com
|
||||
*
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1015 B After Width: | Height: | Size: 977 B |
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 118 B |
After Width: | Height: | Size: 300 B |
After Width: | Height: | Size: 933 B |
After Width: | Height: | Size: 288 B |
After Width: | Height: | Size: 883 B |
Before Width: | Height: | Size: 145 B After Width: | Height: | Size: 135 B |
Before Width: | Height: | Size: 191 B After Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 145 B After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 173 B After Width: | Height: | Size: 2.8 KiB |
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<project path="" name="Ext - Resources" author="Ext JS, LLC" version="2.0.2" copyright="Ext JS Library $version
Copyright(c) 2006-2008, $author.
licensing@extjs.com

http://extjs.com/license" output="C:\apps\www\deploy\ext-2.0.2\resources" source="true" source-dir="$output" minify="False" min-dir="$output\build" doc="False" doc-dir="$output\docs" master="true" master-file="$output\yui-ext.js" zip="true" zip-file="$output\yuo-ext.$version.zip">
|
||||
<project path="" name="Ext - Resources" author="Ext JS, LLC" version="2.2" copyright="Ext JS Library $version
Copyright(c) 2006-2008, $author.
licensing@extjs.com

http://extjs.com/license" output="C:\apps\www\deploy\ext-2.2\resources" source="true" source-dir="$output" minify="False" min-dir="$output\build" doc="False" doc-dir="$output\docs" master="true" master-file="$output\yui-ext.js" zip="true" zip-file="$output\yuo-ext.$version.zip">
|
||||
<directory name="" />
|
||||
<target name="All css" file="$output\css\ext-all.css" debug="True" shorthand="False" shorthand-list="YAHOO.util.Dom.setStyle
YAHOO.util.Dom.getStyle
YAHOO.util.Dom.getRegion
YAHOO.util.Dom.getViewportHeight
YAHOO.util.Dom.getViewportWidth
YAHOO.util.Dom.get
YAHOO.util.Dom.getXY
YAHOO.util.Dom.setXY
YAHOO.util.CustomEvent
YAHOO.util.Event.addListener
YAHOO.util.Event.getEvent
YAHOO.util.Event.getTarget
YAHOO.util.Event.preventDefault
YAHOO.util.Event.stopEvent
YAHOO.util.Event.stopPropagation
YAHOO.util.Event.stopEvent
YAHOO.util.Anim
YAHOO.util.Motion
YAHOO.util.Connect.asyncRequest
YAHOO.util.Connect.setForm
YAHOO.util.Dom
YAHOO.util.Event">
|
||||
<include name="css\reset.css" />
|
||||
@ -25,6 +25,7 @@
|
||||
<include name="css\layout.css" />
|
||||
<include name="css\progress.css" />
|
||||
<include name="css\dialog.css" />
|
||||
<include name="css\slider.css" />
|
||||
</target>
|
||||
<file name="images\basic-dialog\gray\close.gif" path="images\basic-dialog\gray" />
|
||||
<file name="images\basic-dialog\gray\dlg-bg.gif" path="images\basic-dialog\gray" />
|
||||
@ -434,10 +435,7 @@
|
||||
<file name="images\gray\basic-dialog\expand.gif" path="images\gray\basic-dialog" />
|
||||
<file name="images\vista\basic-dialog\collapse.gif" path="images\vista\basic-dialog" />
|
||||
<file name="images\vista\basic-dialog\expand.gif" path="images\vista\basic-dialog" />
|
||||
<file name="css\.DS_Store" path="css" />
|
||||
<file name="images\default\grid\.DS_Store" path="images\default\grid" />
|
||||
<file name="images\default\toolbar\btn-arrow-light.gif" path="images\default\toolbar" />
|
||||
<file name="images\default\.DS_Store" path="images\default" />
|
||||
<file name="images\default\shared\left-btn.gif" path="images\default\shared" />
|
||||
<file name="images\default\shared\right-btn.gif" path="images\default\shared" />
|
||||
<file name="images\default\shared\calendar.gif" path="images\default\shared" />
|
||||
@ -446,12 +444,9 @@
|
||||
<file name="images\default\bg.png" path="images\default" />
|
||||
<file name="images\default\shadow.png" path="images\default" />
|
||||
<file name="images\default\shadow-lr.png" path="images\default" />
|
||||
<file name="images\.DS_Store" path="images" />
|
||||
<file name=".DS_Store" path="" />
|
||||
<file name="yui-ext-resources.jsb" path="" />
|
||||
<file name="resources.jsb" path="" />
|
||||
<file name="css\box.css" path="css" />
|
||||
<file name="images\default\box\.DS_Store" path="images\default\box" />
|
||||
<file name="images\default\box\corners-blue.gif" path="images\default\box" />
|
||||
<file name="images\default\box\corners.gif" path="images\default\box" />
|
||||
<file name="images\default\box\l-blue.gif" path="images\default\box" />
|
||||
@ -522,9 +517,6 @@
|
||||
<file name="images\default\window\right-corners.psd" path="images\default\window" />
|
||||
<file name="images\default\window\top-bottom.png" path="images\default\window" />
|
||||
<file name="images\default\window\top-bottom.psd" path="images\default\window" />
|
||||
<file name="images\default\._.DS_Store" path="images\default" />
|
||||
<file name="images\._.DS_Store" path="images" />
|
||||
<file name="._.DS_Store" path="" />
|
||||
<file name="css\editor.css" path="css" />
|
||||
<file name="images\default\editor\tb-sprite.gif" path="images\default\editor" />
|
||||
<file name="css\borders.css" path="css" />
|
||||
@ -691,4 +683,17 @@
|
||||
<file name="images\default\tree\arrow-open-over.gif" path="images\default\tree" />
|
||||
<file name="images\default\tree\arrow-open.gif" path="images\default\tree" />
|
||||
<file name="images\default\tree\arrows.gif" path="images\default\tree" />
|
||||
<file name="css\slider.css" path="css" />
|
||||
<file name="images\default\slider\slider-bg.png" path="images\default\slider" />
|
||||
<file name="images\default\slider\slider-thumb.png" path="images\default\slider" />
|
||||
<file name="images\default\slider\slider-v-bg.png" path="images\default\slider" />
|
||||
<file name="images\default\slider\slider-v-thumb.png" path="images\default\slider" />
|
||||
<file name="images\default\panel\Thumbs.db" path="images\default\panel" />
|
||||
<file name="images\default\form\checkbox.gif" path="images\default\form" />
|
||||
<file name="images\default\form\radio.gif" path="images\default\form" />
|
||||
<file name="images\default\.DS_Store" path="images\default" />
|
||||
<file name="images\gray\tabs\Thumbs.db" path="images\gray\tabs" />
|
||||
<file name="images\.DS_Store" path="images" />
|
||||
<file name=".DS_Store" path="" />
|
||||
<file name="images\default\shadow-c.psd" path="images\default" />
|
||||
</project>
|