added extjs2.2

This commit is contained in:
Peter Schojer
2008-09-19 09:18:48 +00:00
parent 61b55c5b0f
commit 24a60074b3
49 changed files with 12838 additions and 5619 deletions

View File

@@ -10,6 +10,9 @@ Ext.grid.AppinfTable = Ext.extend(Ext.grid.EditorGridPanel, {
origEditValue: null, origEditValue: null,
modifiedRecord: null,
modifiedField: null,
// private // private
initComponent : function(){ initComponent : function(){
//make sure we have cell selection! //make sure we have cell selection!
@@ -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 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.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){ 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; this.charThatStartedEdit = code;
var sc = this.selModel.getSelectedCell(); var sc = this.selModel.getSelectedCell();
var col = sc[1]; var col = sc[1];
@@ -65,13 +103,15 @@ Ext.override(Ext.grid.AppinfTable, {
var edView = this.view.getEditorParent(ed); var edView = this.view.getEditorParent(ed);
ed.render(edView); ed.render(edView);
} }
this.modifiedField = ed.field;
this.modifiedRecord = r;
var edfield = ed.field; var edfield = ed.field;
ed.row = row; ed.row = row;
ed.col = col; ed.col = col;
ed.record = r; ed.record = r;
ed.field = edfield; ed.field = edfield;
ed.on("complete", this.onEditComplete, this, {single: true}); 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; this.activeEditor = ed;
var v = this.preEditValue(r, field); var v = this.preEditValue(r, field);
this.origEditValue = v; this.origEditValue = v;
@@ -98,7 +138,7 @@ Ext.override(Ext.grid.AppinfTable, {
onEditComplete : function(ed, value, startValue){ onEditComplete : function(ed, value, startValue){
this.editing = false; this.editing = false;
this.activeEditor = null; this.activeEditor = null;
ed.un("specialkey", this.selModel.onEditorKey, this.selModel); ed.un("specialkey", this.onEditorKey, this);
var r = ed.record; var r = ed.record;
var field = this.colModel.getDataIndex(ed.col); var field = this.colModel.getDataIndex(ed.col);
value = this.postEditValue(value, startValue, r, field); value = this.postEditValue(value, startValue, r, field);
@@ -120,6 +160,27 @@ Ext.override(Ext.grid.AppinfTable, {
} }
} }
this.view.focusCell(ed.row, ed.col); 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);
} }
}); });

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -70,7 +70,9 @@
padding-bottom:2px; padding-bottom:2px;
padding-right:0; padding-right:0;
} }
.ext-gecko3 .x-btn-text-icon .x-btn-center .x-btn-text {
padding-top:2px;
}
.x-btn-left, .x-btn-right{ .x-btn-left, .x-btn-right{
font-size:1px; font-size:1px;
line-height:1px; line-height:1px;

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -44,6 +44,7 @@
} }
.x-date-middle { .x-date-middle {
padding-top:2px;padding-bottom:2px; padding-top:2px;padding-bottom:2px;
width:130px; /* FF3 */
} }
.x-date-right a, .x-date-left a{ .x-date-right a, .x-date-left a{
display:block; display:block;

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -44,6 +44,11 @@
width:47px; width:47px;
height:32px; height:32px;
} }
.x-window-dlg .ext-mb-icon {
float:left;
width:47px;
height:32px;
}
.ext-ie .x-window-dlg .ext-mb-icon { .ext-ie .x-window-dlg .ext-mb-icon {
width:44px; /* 3px IE margin issue */ width:44px; /* 3px IE margin issue */
} }
@@ -59,3 +64,6 @@
.x-window-dlg .ext-mb-error { .x-window-dlg .ext-mb-error {
background:transparent url(../images/default/window/icon-error.gif) no-repeat top left; background:transparent url(../images/default/window/icon-error.gif) no-repeat top left;
} }
.ext-gecko2 .ext-mb-fix-cursor {
overflow:auto;
}

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -73,18 +73,22 @@ ul.x-tab-strip-top{padding-top:1px;background:url(../images/default/tabs/tab-str
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;} 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 .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{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;} .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;}
.ext-border-box .x-tab-panel-header-plain .x-tab-strip-spacer{height:3px;} .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{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;} 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,.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 a{text-decoration:none!important;-moz-outline:none;outline:none;cursor:pointer;}
.x-tab-strip-inner{overflow:hidden;text-overflow:ellipsis;} .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 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-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 .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-over span.x-tab-strip-text{color:#15428b;}
.x-tab-strip-active{cursor:default;} .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-active span.x-tab-strip-text{cursor:default;color:#15428b;font-weight:bold;}
.x-tab-strip-disabled .x-tabs-text{cursor:default;color:#aaa;} .x-tab-strip-disabled .x-tabs-text{cursor:default;color:#aaa;}
.x-tab-panel-body{overflow:hidden;} .x-tab-panel-body{overflow:hidden;}
@@ -128,7 +132,6 @@ ul.x-tab-strip li.x-tab-edge{float:left;margin:0!important;padding:0!important;b
.x-tab-scrolling{position:relative;} .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-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-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-form-field{margin:0;font:normal 12px tahoma,arial,helvetica,sans-serif;} .x-form-field{margin:0;font:normal 12px tahoma,arial,helvetica,sans-serif;}
.x-form-text,textarea.x-form-field{padding:1px 3px;background:#fff url(../images/default/form/text-bg.gif) repeat-x 0 0;border:1px solid #B5B8C8;} .x-form-text,textarea.x-form-field{padding:1px 3px;background:#fff url(../images/default/form/text-bg.gif) repeat-x 0 0;border:1px solid #B5B8C8;}
@@ -142,8 +145,25 @@ textarea.x-form-field{padding:2px 3px;}
.ext-gecko .x-form-text{padding-top:2px;padding-bottom:0;} .ext-gecko .x-form-text{padding-top:2px;padding-bottom:0;}
textarea{resize:none;} textarea{resize:none;}
.x-form-select-one{height:20px;line-height:18px;vertical-align:middle;background-color:#fff;border:1px solid #B5B8C8;} .x-form-select-one{height:20px;line-height:18px;vertical-align:middle;background-color:#fff;border:1px solid #B5B8C8;}
.x-form-check-group,.x-form-radio-group{margin-bottom:0;}
.x-form-check-group .x-form-invalid .x-panel-body,.x-form-radio-group .x-form-invalid .x-panel-body{background-color:transparent;}
.x-form-check-wrap,.x-form-radio-wrap{padding:3px 0 0 0;line-height:18px;}
.x-form-check-group .x-form-check-wrap,.x-form-radio-group .x-form-radio-wrap{height:18px;}
.ext-ie .x-form-check-group .x-form-check-wrap,.ext-ie .x-form-radio-group .x-form-radio-wrap{height:21px;}
.ext-ie .x-form-check-wrap input,.ext-ie .x-form-radio-wrap input{width:15px;height:15px;}
.x-form-check,.x-form-radio{height:13px;width:13px;vertical-align:bottom;}
.x-form-radio{margin-bottom:3px;}
.x-form-check,.ext-ie .x-form-radio{margin-bottom:2px;}
.x-form-check-wrap-inner,.x-form-radio-wrap-inner{display:inline;padding:3px 0 0 0;}
.x-form-check{background:url('../images/default/form/checkbox.gif') no-repeat 0 0;}
.x-form-radio{background:url('../images/default/form/radio.gif') no-repeat 0 0;}
.x-form-check-focus .x-form-check,.x-form-check-over .x-form-check,.x-form-check-focus .x-form-radio,.x-form-check-over .x-form-radio{background-position:-13px 0;}
.x-form-check-down .x-form-check,.x-form-check-down .x-form-radio{background-position:-26px 0;}
.x-form-check-checked .x-form-check-focus .x-form-check,.x-form-check-checked .x-form-check-over .x-form-check{background-position:-13px -13px;}
.x-form-check-checked .x-form-check-down .x-form-check{background-position:-26px -13px;}
.x-form-check-checked .x-form-check,.x-form-check-checked .x-form-radio{background-position:0 -13px;}
.x-form-check-group-label{border-bottom:1px solid #99BBE8;color:#15428B;margin-bottom:5px;padding-left:3px!important;float:none!important;}
.x-form-field-wrap{position:relative;zoom:1;white-space:nowrap;} .x-form-field-wrap{position:relative;zoom:1;white-space:nowrap;}
.x-editor .x-form-check-wrap{background:#fff;}
.x-form-field-wrap .x-form-trigger{width:17px;height:21px;border:0;background:transparent url(../images/default/form/trigger.gif) no-repeat 0 0;cursor:pointer;border-bottom:1px solid #B5B8C8;position:absolute;top:0;} .x-form-field-wrap .x-form-trigger{width:17px;height:21px;border:0;background:transparent url(../images/default/form/trigger.gif) no-repeat 0 0;cursor:pointer;border-bottom:1px solid #B5B8C8;position:absolute;top:0;}
.ext-safari .x-form-field-wrap .x-form-trigger{height:21px;} .ext-safari .x-form-field-wrap .x-form-trigger{height:21px;}
.x-form-field-wrap .x-form-date-trigger{background-image:url(../images/default/form/date-trigger.gif);cursor:pointer;} .x-form-field-wrap .x-form-date-trigger{background-image:url(../images/default/form/date-trigger.gif);cursor:pointer;}
@@ -163,17 +183,16 @@ textarea{resize:none;}
.x-form-invalid,textarea.x-form-invalid{background:#fff url(../images/default/grid/invalid_line.gif) repeat-x bottom;border:1px solid #dd7870;} .x-form-invalid,textarea.x-form-invalid{background:#fff url(../images/default/grid/invalid_line.gif) repeat-x bottom;border:1px solid #dd7870;}
.ext-safari .x-form-invalid{background-color:#fee;border:1px solid #ff7870;} .ext-safari .x-form-invalid{background-color:#fee;border:1px solid #ff7870;}
.x-editor{visibility:hidden;padding:0;margin:0;} .x-editor{visibility:hidden;padding:0;margin:0;}
.x-form-check-wrap{line-height:18px;} .x-editor .x-form-check-wrap,.x-editor .x-form-radio-wrap{background:#fff;padding:3px;}
.ext-ie .x-form-check-wrap input{width:15px;height:15px;}
.x-editor .x-form-check-wrap{padding:3px;}
.x-editor .x-form-checkbox{height:13px;} .x-editor .x-form-checkbox{height:13px;}
.x-form-grow-sizer{font:normal 12px tahoma,arial,helvetica,sans-serif;left:-10000px;padding:8px 3px;position:absolute;visibility:hidden;top:-10000px;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;zoom:1;} .x-form-grow-sizer{font:normal 12px tahoma,arial,helvetica,sans-serif;left:-10000px;padding:8px 3px;position:absolute;visibility:hidden;top:-10000px;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;zoom:1;}
.x-form-grow-sizer p{margin:0!important;border:0 none!important;padding:0!important;} .x-form-grow-sizer p{margin:0!important;border:0 none!important;padding:0!important;}
.x-form-item{font:normal 12px tahoma,arial,helvetica,sans-serif;display:block;margin-bottom:4px;} .x-form-item{font:normal 12px tahoma,arial,helvetica,sans-serif;display:block;margin-bottom:4px;zoom:1;}
.x-form-item label{display:block;float:left;width:100px;padding:3px;padding-left:0;clear:left;z-index:2;position:relative;} .x-form-item label{display:block;float:left;width:100px;padding:3px;padding-left:0;clear:left;z-index:2;position:relative;}
.x-form-element{padding-left:105px;position:relative;} .x-form-element{padding-left:105px;position:relative;}
.x-form-invalid-msg{color:#e00;padding:2px;padding-left:18px;font:normal 11px tahoma,arial,helvetica,sans-serif;background:transparent url(../images/default/shared/warning.gif) no-repeat 0 2px;line-height:16px;width:200px;} .x-form-invalid-msg{color:#e00;padding:2px;padding-left:18px;font:normal 11px tahoma,arial,helvetica,sans-serif;background:transparent url(../images/default/shared/warning.gif) no-repeat 0 2px;line-height:16px;width:200px;}
.x-form-label-right label{text-align:right;} .x-form-label-right label{text-align:right;}
.x-form-label-left label{text-align:left;}
.x-form-label-top .x-form-item label{width:auto;float:none;clear:none;display:inline;margin-bottom:4px;position:static;} .x-form-label-top .x-form-item label{width:auto;float:none;clear:none;display:inline;margin-bottom:4px;position:static;}
.x-form-label-top .x-form-element{padding-left:0;padding-top:4px;} .x-form-label-top .x-form-element{padding-left:0;padding-top:4px;}
.x-form-label-top .x-form-item{padding-bottom:4px;} .x-form-label-top .x-form-item{padding-bottom:4px;}
@@ -206,7 +225,7 @@ textarea{resize:none;}
.x-form .x-form-btns-ct .x-btn-click .x-btn-right{background-position:0 -84px;} .x-form .x-form-btns-ct .x-btn-click .x-btn-right{background-position:0 -84px;}
.x-form .x-form-btns-ct .x-btn-click .x-btn-left{background-position:0 -63px;} .x-form .x-form-btns-ct .x-btn-click .x-btn-left{background-position:0 -63px;}
.x-form-invalid-icon{width:16px;height:18px;visibility:hidden;position:absolute;left:0;top:0;display:block;background:transparent url(../images/default/form/exclamation.gif) no-repeat 0 2px;} .x-form-invalid-icon{width:16px;height:18px;visibility:hidden;position:absolute;left:0;top:0;display:block;background:transparent url(../images/default/form/exclamation.gif) no-repeat 0 2px;}
.x-fieldset{border:1px solid #B5B8C8;padding:10px;margin-bottom:10px;} .x-fieldset{border:1px solid #B5B8C8;padding:10px;margin-bottom:10px;display:block;}
.x-fieldset legend{font:bold 11px tahoma,arial,helvetica,sans-serif;color:#15428b;} .x-fieldset legend{font:bold 11px tahoma,arial,helvetica,sans-serif;color:#15428b;}
.ext-ie .x-fieldset legend{margin-bottom:10px;} .ext-ie .x-fieldset legend{margin-bottom:10px;}
.ext-ie .x-fieldset{padding-top:0;padding-bottom:10px;} .ext-ie .x-fieldset{padding-top:0;padding-bottom:10px;}
@@ -237,6 +256,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap{visibility:hidden;position:absolute
.x-btn-icon .x-btn-center{padding:1px;} .x-btn-icon .x-btn-center{padding:1px;}
.x-btn em{font-style:normal;font-weight:normal;} .x-btn em{font-style:normal;font-weight:normal;}
.x-btn-text-icon .x-btn-center .x-btn-text{background-position:0 2px;background-repeat:no-repeat;padding-left:18px;padding-top:3px;padding-bottom:2px;padding-right:0;} .x-btn-text-icon .x-btn-center .x-btn-text{background-position:0 2px;background-repeat:no-repeat;padding-left:18px;padding-top:3px;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;} .x-btn-left,.x-btn-right{font-size:1px;line-height:1px;}
.x-btn-left{width:3px;height:21px;background:url(../images/default/button/btn-sprite.gif) no-repeat 0 0;} .x-btn-left{width:3px;height:21px;background:url(../images/default/button/btn-sprite.gif) no-repeat 0 0;}
.x-btn-right{width:3px;height:21px;background:url(../images/default/button/btn-sprite.gif) no-repeat 0 -21px;} .x-btn-right{width:3px;height:21px;background:url(../images/default/button/btn-sprite.gif) no-repeat 0 -21px;}
@@ -286,7 +306,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap{visibility:hidden;position:absolute
.x-toolbar .ytb-spacer{width:2px;} .x-toolbar .ytb-spacer{width:2px;}
.x-tbar-page-number{width:24px;height:14px;} .x-tbar-page-number{width:24px;height:14px;}
.x-tbar-page-first{background-image:url(../images/default/grid/page-first.gif)!important;} .x-tbar-page-first{background-image:url(../images/default/grid/page-first.gif)!important;}
.x-tbar-loading{background-image:url(../images/default/grid/done.gif)!important;} .x-tbar-loading{background-image:url(../images/default/grid/refresh.gif)!important;}
.x-tbar-page-last{background-image:url(../images/default/grid/page-last.gif)!important;} .x-tbar-page-last{background-image:url(../images/default/grid/page-last.gif)!important;}
.x-tbar-page-next{background-image:url(../images/default/grid/page-next.gif)!important;} .x-tbar-page-next{background-image:url(../images/default/grid/page-next.gif)!important;}
.x-tbar-page-prev{background-image:url(../images/default/grid/page-prev.gif)!important;} .x-tbar-page-prev{background-image:url(../images/default/grid/page-prev.gif)!important;}
@@ -296,6 +316,9 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap{visibility:hidden;position:absolute
.x-item-disabled .x-tbar-page-next{background-image:url(../images/default/grid/page-next-disabled.gif)!important;} .x-item-disabled .x-tbar-page-next{background-image:url(../images/default/grid/page-next-disabled.gif)!important;}
.x-item-disabled .x-tbar-page-prev{background-image:url(../images/default/grid/page-prev-disabled.gif)!important;} .x-item-disabled .x-tbar-page-prev{background-image:url(../images/default/grid/page-prev-disabled.gif)!important;}
.x-paging-info{position:absolute;top:5px;right:8px;color:#444;} .x-paging-info{position:absolute;top:5px;right:8px;color:#444;}
.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;}
.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;background:white;filter:alpha(opacity=0);opacity:0;zoom:1;} .x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;background:white;filter:alpha(opacity=0);opacity:0;zoom:1;}
.x-resizable-handle-east{width:6px;cursor:e-resize;right:0;top:0;height:100%;} .x-resizable-handle-east{width:6px;cursor:e-resize;right:0;top:0;height:100%;}
@@ -323,7 +346,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap{visibility:hidden;position:absolute
.x-grid3{position:relative;overflow:hidden;background-color:#fff;} .x-grid3{position:relative;overflow:hidden;background-color:#fff;}
.x-grid-panel .x-panel-body{overflow:hidden!important;} .x-grid-panel .x-panel-body{overflow:hidden!important;}
.x-grid-panel .x-panel-mc .x-panel-body{border:1px solid #99bbe8;} .x-grid-panel .x-panel-mc .x-panel-body{border:1px solid #99bbe8;}
.ext-ie .x-grid3 table,.ext-safari .x-grid3 table{table-layout:fixed;} .x-grid3 table{table-layout:fixed;}
.x-grid3-viewport{overflow:hidden;} .x-grid3-viewport{overflow:hidden;}
.x-grid3-hd-row td,.x-grid3-row td,.x-grid3-summary-row td{font:normal 11px arial,tahoma,helvetica,sans-serif;-moz-outline:none;-moz-user-focus:normal;} .x-grid3-hd-row td,.x-grid3-row td,.x-grid3-summary-row td{font:normal 11px arial,tahoma,helvetica,sans-serif;-moz-outline:none;-moz-user-focus:normal;}
.x-grid3-row td,.x-grid3-summary-row td{line-height:13px;vertical-align:top;padding-left:1px;padding-right:1px;-moz-user-select:none;} .x-grid3-row td,.x-grid3-summary-row td{line-height:13px;vertical-align:top;padding-left:1px;padding-right:1px;-moz-user-select:none;}
@@ -343,7 +366,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap{visibility:hidden;position:absolute
.x-grid3-row-over{border:1px solid #ddd;background:#efefef url(../images/default/grid/row-over.gif) repeat-x left top;} .x-grid3-row-over{border:1px solid #ddd;background:#efefef url(../images/default/grid/row-over.gif) repeat-x left top;}
.x-grid3-resize-proxy{width:1px;left:0;background-color:#777;cursor:e-resize;cursor:col-resize;position:absolute;top:0;height:100px;overflow:hidden;visibility:hidden;border:0 none;z-index:7;} .x-grid3-resize-proxy{width:1px;left:0;background-color:#777;cursor:e-resize;cursor:col-resize;position:absolute;top:0;height:100px;overflow:hidden;visibility:hidden;border:0 none;z-index:7;}
.x-grid3-resize-marker{width:1px;left:0;background-color:#777;position:absolute;top:0;height:100px;overflow:hidden;visibility:hidden;border:0 none;z-index:7;} .x-grid3-resize-marker{width:1px;left:0;background-color:#777;position:absolute;top:0;height:100px;overflow:hidden;visibility:hidden;border:0 none;z-index:7;}
.x-grid3-focus{position:absolute;top:0;-moz-outline:0 none;outline:0 none;-moz-user-select:normal;-khtml-user-select:normal;} .x-grid3-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;}
.x-grid3-header{background:#f9f9f9 url(../images/default/grid/grid3-hrow.gif) repeat-x 0 bottom;cursor:default;zoom:1;padding:1px 0 0 0;} .x-grid3-header{background:#f9f9f9 url(../images/default/grid/grid3-hrow.gif) repeat-x 0 bottom;cursor:default;zoom:1;padding:1px 0 0 0;}
.x-grid3-header-pop{border-left:1px solid #d0d0d0;float:right;clear:none;} .x-grid3-header-pop{border-left:1px solid #d0d0d0;float:right;clear:none;}
.x-grid3-header-pop-inner{border-left:1px solid #eee;width:14px;height:19px;background:transparent url(../images/default/grid/hd-pop.gif) no-repeat center center;} .x-grid3-header-pop-inner{border-left:1px solid #eee;width:14px;height:19px;background:transparent url(../images/default/grid/hd-pop.gif) no-repeat center center;}
@@ -498,6 +521,7 @@ input.x-tree-node-cb{margin-left:1px;}
.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(../images/default/tree/drop-over.gif);} .x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(../images/default/tree/drop-over.gif);}
.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(../images/default/tree/drop-under.gif);} .x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(../images/default/tree/drop-under.gif);}
.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(../images/default/tree/drop-between.gif);} .x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(../images/default/tree/drop-between.gif);}
.x-tree-root-ct{zoom:1;}
.x-date-picker{border:1px solid #1b376c;border-top:0 none;background:#fff;position:relative;} .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-picker a{-moz-outline:0 none;outline:0 none;}
@@ -508,7 +532,7 @@ input.x-tree-node-cb{margin-left:1px;}
.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-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,.x-date-left{width:18px;}
.x-date-right{text-align:right;} .x-date-right{text-align:right;}
.x-date-middle{padding-top:2px;padding-bottom:2px;} .x-date-middle{padding-top:2px;padding-bottom:2px;width:130px;}
.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,.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: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-right a{background-image:url(../images/default/shared/right-btn.gif);margin-right:2px;text-decoration:none!important;}
@@ -584,7 +608,7 @@ td.x-date-mp-sep{border-right:1px solid #c5d2df;}
.x-menu-list-item{font:normal 11px tahoma,arial,sans-serif;white-space:nowrap;-moz-user-select:none;-khtml-user-select:none;display:block;padding:1px;} .x-menu-list-item{font:normal 11px tahoma,arial,sans-serif;white-space:nowrap;-moz-user-select:none;-khtml-user-select:none;display:block;padding:1px;}
.x-menu-item-arrow{background:transparent url(../images/default/menu/menu-parent.gif) no-repeat right;} .x-menu-item-arrow{background:transparent url(../images/default/menu/menu-parent.gif) no-repeat right;}
.x-menu-sep{display:block;font-size:1px;line-height:1px;margin:2px 3px;background-color:#e0e0e0;border-bottom:1px solid #fff;overflow:hidden;} .x-menu-sep{display:block;font-size:1px;line-height:1px;margin:2px 3px;background-color:#e0e0e0;border-bottom:1px solid #fff;overflow:hidden;}
.x-menu-focus{position:absolute;left:0;top:-5px;width:0;height:0;line-height:1px;} .x-menu-focus{position:absolute;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;line-height:16px;padding:3px 21px 3px 3px;white-space:nowrap;text-decoration:none;color:#222;-moz-outline:0 none;outline:0 none;cursor:pointer;} .x-menu a.x-menu-item{display:block;line-height:16px;padding:3px 21px 3px 3px;white-space:nowrap;text-decoration:none;color:#222;-moz-outline:0 none;outline:0 none;cursor:pointer;}
.x-menu-item-active{background:#ebf3fd url(../images/default/menu/item-over.gif) repeat-x left bottom;border:1px solid #aaccf6;padding:0;} .x-menu-item-active{background:#ebf3fd url(../images/default/menu/item-over.gif) repeat-x left bottom;border:1px solid #aaccf6;padding:0;}
.x-menu-item-active a.x-menu-item{color:#233d6d;} .x-menu-item-active a.x-menu-item{color:#233d6d;}
@@ -663,8 +687,8 @@ td.x-date-mp-sep{border-right:1px solid #c5d2df;}
.x-panel-ml{background:#fff url(../images/default/panel/left-right.gif) repeat-y 0 0;padding-left:6px;zoom:1;} .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-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-bc .x-panel-footer{padding-bottom:6px;}
.x-panel-nofooter .x-panel-bc{height:6px;font-size:0;line-height:0;} .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;} .x-panel-bwrap{overflow:hidden;zoom:1;left:0;top:0;}
.x-panel-body{overflow:hidden;zoom:1;} .x-panel-body{overflow:hidden;zoom:1;}
.x-panel-collapsed .x-resizable-handle{display:none;} .x-panel-collapsed .x-resizable-handle{display:none;}
.ext-gecko .x-panel-animated div{overflow:hidden!important;} .ext-gecko .x-panel-animated div{overflow:hidden!important;}
@@ -740,7 +764,7 @@ td.x-date-mp-sep{border-right:1px solid #c5d2df;}
.x-window .x-resizable-handle{opacity:0;-moz-opacity:0;filter:alpha(opacity=0);} .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-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-header{overflow:hidden;zoom:1;}
.x-window-bwrap{z-index:1;position:relative;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-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-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-tc{background:transparent url(../images/default/window/top-bottom.png) repeat-x 0 0;overflow:hidden;zoom:1;}
@@ -753,7 +777,6 @@ td.x-date-mp-sep{border-right:1px solid #c5d2df;}
.x-window-mc{border:1px solid #99bbe8;padding:0;margin:0;font:normal 11px tahoma,arial,helvetica,sans-serif;background:#dfe8f6;} .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-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-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-body{overflow:hidden;}
.x-window-bwrap{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-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;}
@@ -839,6 +862,7 @@ body.x-body-masked .x-window-plain .x-window-mc{background:#C7D6E9;}
.x-layout-collapsed-over{cursor:pointer;background-color:#d9e8fb;} .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-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{position:absolute;height:5px;width:5px;line-height:1px;font-size:1px;z-index:3;background-color:transparent;}
.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-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-layout-split-v{background-image:url(../images/default/s.gif);background-position:top;}
.x-column-layout-ct{overflow:hidden;zoom:1;} .x-column-layout-ct{overflow:hidden;zoom:1;}
@@ -875,9 +899,27 @@ body.x-body-masked .x-window-plain .x-window-mc{background:#C7D6E9;}
.ext-ie .x-window-dlg .x-progress-wrap{margin-top:6px;} .ext-ie .x-window-dlg .x-progress-wrap{margin-top:6px;}
.x-window-dlg .x-msg-box-wait{background:transparent url(../images/default/grid/loading.gif) no-repeat left;display:block;width:300px;padding-left:18px;line-height:18px;} .x-window-dlg .x-msg-box-wait{background:transparent url(../images/default/grid/loading.gif) no-repeat left;display:block;width:300px;padding-left:18px;line-height:18px;}
.x-window-dlg .ext-mb-icon{float:left;width:47px;height:32px;} .x-window-dlg .ext-mb-icon{float:left;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;} .ext-ie .x-window-dlg .ext-mb-icon{width:44px;}
.x-window-dlg .ext-mb-info{background:transparent url(../images/default/window/icon-info.gif) no-repeat top left;} .x-window-dlg .ext-mb-info{background:transparent url(../images/default/window/icon-info.gif) no-repeat top left;}
.x-window-dlg .ext-mb-warning{background:transparent url(../images/default/window/icon-warning.gif) no-repeat top left;} .x-window-dlg .ext-mb-warning{background:transparent url(../images/default/window/icon-warning.gif) no-repeat top left;}
.x-window-dlg .ext-mb-question{background:transparent url(../images/default/window/icon-question.gif) no-repeat top left;} .x-window-dlg .ext-mb-question{background:transparent url(../images/default/window/icon-question.gif) no-repeat top left;}
.x-window-dlg .ext-mb-error{background:transparent url(../images/default/window/icon-error.gif) no-repeat top left;} .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;}
.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;}
.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;}
.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;}

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -66,14 +66,78 @@ textarea {
/* --- TODO --- */ /* --- TODO --- */
/* checkboxes */ /* checkboxes / radios */
.x-form-check-group, .x-form-radio-group {
/* --- TODO --- */ margin-bottom: 0;
}
/* radios */ .x-form-check-group .x-form-invalid .x-panel-body,
.x-form-radio-group .x-form-invalid .x-panel-body {
/* --- TODO --- */ background-color: transparent;
}
.x-form-check-wrap, .x-form-radio-wrap {
padding: 3px 0 0 0;
line-height:18px;
}
.x-form-check-group .x-form-check-wrap,
.x-form-radio-group .x-form-radio-wrap {
height: 18px;
}
.ext-ie .x-form-check-group .x-form-check-wrap,
.ext-ie .x-form-radio-group .x-form-radio-wrap {
height: 21px;
}
.ext-ie .x-form-check-wrap input,
.ext-ie .x-form-radio-wrap input {
width:15px;
height:15px;
}
.x-form-check, .x-form-radio {
height: 13px;
width: 13px;
vertical-align: bottom;
}
.x-form-radio {
margin-bottom: 3px;
}
.x-form-check, .ext-ie .x-form-radio {
margin-bottom: 2px;
}
.x-form-check-wrap-inner, .x-form-radio-wrap-inner {
display: inline;
padding: 3px 0 0 0;
}
.x-form-check {
background: url('../images/default/form/checkbox.gif') no-repeat 0 0;
}
.x-form-radio {
background: url('../images/default/form/radio.gif') no-repeat 0 0;
}
.x-form-check-focus .x-form-check, .x-form-check-over .x-form-check,
.x-form-check-focus .x-form-radio, .x-form-check-over .x-form-radio {
background-position: -13px 0;
}
.x-form-check-down .x-form-check,
.x-form-check-down .x-form-radio {
background-position:-26px 0;
}
.x-form-check-checked .x-form-check-focus .x-form-check,
.x-form-check-checked .x-form-check-over .x-form-check {
background-position:-13px -13px;
}
.x-form-check-checked .x-form-check-down .x-form-check {
background-position:-26px -13px;
}
.x-form-check-checked .x-form-check,
.x-form-check-checked .x-form-radio {
background-position:0 -13px;
}
.x-form-check-group-label {
border-bottom: 1px solid #99BBE8;
color: #15428B;
margin-bottom: 5px;
padding-left: 3px !important;
float: none !important;
}
/* wrapped fields and triggers */ /* wrapped fields and triggers */
@@ -82,10 +146,6 @@ textarea {
zoom:1; zoom:1;
white-space: nowrap; white-space: nowrap;
} }
.x-editor .x-form-check-wrap {
background:#fff;
}
.x-form-field-wrap .x-form-trigger{ .x-form-field-wrap .x-form-trigger{
width:17px; width:17px;
height:21px; height:21px;
@@ -170,20 +230,14 @@ textarea {
} }
/* editors */ /* editors */
.x-editor { .x-editor {
visibility:hidden; visibility:hidden;
padding:0; padding:0;
margin:0; margin:0;
} }
.x-form-check-wrap { .x-editor .x-form-check-wrap,
line-height:18px; .x-editor .x-form-radio-wrap {
} background:#fff;
.ext-ie .x-form-check-wrap input {
width:15px;
height:15px;
}
.x-editor .x-form-check-wrap {
padding:3px; padding:3px;
} }
.x-editor .x-form-checkbox { .x-editor .x-form-checkbox {
@@ -215,6 +269,7 @@ textarea {
font:normal 12px tahoma, arial, helvetica, sans-serif; font:normal 12px tahoma, arial, helvetica, sans-serif;
display:block; display:block;
margin-bottom:4px; margin-bottom:4px;
zoom:1;
} }
.x-form-item label { .x-form-item label {
@@ -247,6 +302,9 @@ textarea {
.x-form-label-right label { .x-form-label-right label {
text-align:right; text-align:right;
} }
.x-form-label-left label {
text-align:left;
}
.x-form-label-top .x-form-item label { .x-form-label-top .x-form-item label {
width:auto; width:auto;
@@ -407,6 +465,7 @@ textarea {
border:1px solid #B5B8C8; border:1px solid #B5B8C8;
padding:10px; padding:10px;
margin-bottom:10px; margin-bottom:10px;
display:block; /* preserve margins in IE */
} }
.x-fieldset legend { .x-fieldset legend {
font:bold 11px tahoma, arial, helvetica, sans-serif; font:bold 11px tahoma, arial, helvetica, sans-serif;

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -21,7 +21,7 @@
border:1px solid #99bbe8; border:1px solid #99bbe8;
} }
.ext-ie .x-grid3 table,.ext-safari .x-grid3 table { .x-grid3 table {
table-layout:fixed; table-layout:fixed;
} }
.x-grid3-viewport{ .x-grid3-viewport{
@@ -139,11 +139,16 @@
} }
.x-grid3-focus { .x-grid3-focus {
position:absolute; position:absolute;
left:0;
top:0; top:0;
width:1px;
height:1px;
line-height:1px;
font-size:1px;
-moz-outline:0 none; -moz-outline:0 none;
outline:0 none; outline:0 none;
-moz-user-select: normal; -moz-user-select: text;
-khtml-user-select: normal; -khtml-user-select: text;
} }
/* header styles */ /* header styles */

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -144,6 +144,12 @@
background-color:transparent; 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{ .x-layout-split-h{
background-image:url(../images/default/s.gif); background-image:url(../images/default/s.gif);
background-position: left; background-position: left;

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -53,11 +53,18 @@
} }
.x-menu-focus { .x-menu-focus {
position:absolute; position:absolute;
left:0; left:-1px;
top:-5px; top:-1px;
width:0; width:1px;
height:0; height:1px;
line-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 { .x-menu a.x-menu-item {
display:block; display:block;

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -142,7 +142,7 @@
.x-panel-bc .x-panel-footer { .x-panel-bc .x-panel-footer {
padding-bottom:6px; padding-bottom:6px;
} }
.x-panel-nofooter .x-panel-bc { .x-panel-nofooter .x-panel-bc, .x-panel-nofooter .x-window-bc {
height:6px; height:6px;
font-size:0; font-size:0;
line-height:0; line-height:0;
@@ -151,6 +151,7 @@
.x-panel-bwrap { .x-panel-bwrap {
overflow:hidden; overflow:hidden;
zoom:1; zoom:1;
left:0;top:0;
} }
.x-panel-body { .x-panel-body {
overflow:hidden; overflow:hidden;

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

View 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;
}

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -63,16 +63,33 @@ ul.x-tab-strip-bottom{
padding-bottom:0 !important; padding-bottom:0 !important;
} }
.x-tab-panel-header-plain .x-tab-strip-spacer { .x-tab-panel-header-plain .x-tab-strip-spacer,
.x-tab-panel-footer-plain .x-tab-strip-spacer {
border:1px solid #8db2e3; border:1px solid #8db2e3;
border-top: 0 none;
height:2px; height:2px;
background: #deecfd; background: #deecfd;
font-size:1px; font-size:1px;
line-height: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;
}
.ext-border-box .x-tab-panel-header-plain .x-tab-strip-spacer { .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; height:3px;
} }
@@ -119,7 +136,7 @@ ul.x-tab-strip li.x-tab-edge {
cursor:pointer; cursor:pointer;
padding:4px 0; padding:4px 0;
} }
.x-tab-strip .x-tab-with-icon .x-tab-right { .x-tab-strip-top .x-tab-with-icon .x-tab-right {
padding-left:6px; padding-left:6px;
} }
.x-tab-strip .x-tab-with-icon span.x-tab-strip-text { .x-tab-strip .x-tab-with-icon span.x-tab-strip-text {
@@ -132,7 +149,7 @@ ul.x-tab-strip li.x-tab-edge {
color:#15428b; color:#15428b;
} }
.x-tab-strip-active { .x-tab-strip-active, .x-tab-strip-active a.x-tab-right {
cursor:default; cursor:default;
} }
@@ -339,7 +356,3 @@ ul.x-tab-strip li.x-tab-edge {
overflow:hidden; overflow:hidden;
padding:2px; padding:2px;
} }
.x-border-layout-ct .x-tab-panel {
background: white;
}

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -129,7 +129,7 @@
background-image: url(../images/default/grid/page-first.gif) !important; background-image: url(../images/default/grid/page-first.gif) !important;
} }
.x-tbar-loading{ .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{ .x-tbar-page-last{
background-image: url(../images/default/grid/page-last.gif) !important; background-image: url(../images/default/grid/page-last.gif) !important;
@@ -161,3 +161,23 @@
right: 8px; right: 8px;
color:#444; 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;
}

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -248,3 +248,7 @@ input.x-tree-node-cb {
.x-tree-drop-ok-between .x-dd-drop-icon{ .x-tree-drop-ok-between .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-between.gif); background-image: url(../images/default/tree/drop-between.gif);
} }
/* Fix for ie rootVisible:false issue */
.x-tree-root-ct {
zoom:1;
}

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *
@@ -36,6 +36,7 @@
z-index:1; z-index:1;
position:relative; position:relative;
zoom:1; zoom:1;
left:0;top:0;
} }
.x-window-tl .x-window-header { .x-window-tl .x-window-header {
color:#15428b; color:#15428b;
@@ -100,9 +101,6 @@
padding-right:6px; padding-right:6px;
zoom:1; zoom:1;
} }
.x-panel-nofooter .x-window-bc {
height:6px;
}
.x-window-body { .x-window-body {
overflow:hidden; overflow:hidden;
} }

View File

@@ -1,5 +1,5 @@
/* /*
* Ext JS Library 2.0.2 * Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC. * Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com * licensing@extjs.com
* *

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1015 B

After

Width:  |  Height:  |  Size: 977 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 B

After

Width:  |  Height:  |  Size: 118 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 883 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 B

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 B

After

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 B

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 B

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?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&#xD;&#xA;Copyright(c) 2006-2008, $author.&#xD;&#xA;licensing@extjs.com&#xD;&#xA;&#xD;&#xA;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&#xD;&#xA;Copyright(c) 2006-2008, $author.&#xD;&#xA;licensing@extjs.com&#xD;&#xA;&#xD;&#xA;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="" /> <directory name="" />
<target name="All css" file="$output\css\ext-all.css" debug="True" shorthand="False" shorthand-list="YAHOO.util.Dom.setStyle&#xD;&#xA;YAHOO.util.Dom.getStyle&#xD;&#xA;YAHOO.util.Dom.getRegion&#xD;&#xA;YAHOO.util.Dom.getViewportHeight&#xD;&#xA;YAHOO.util.Dom.getViewportWidth&#xD;&#xA;YAHOO.util.Dom.get&#xD;&#xA;YAHOO.util.Dom.getXY&#xD;&#xA;YAHOO.util.Dom.setXY&#xD;&#xA;YAHOO.util.CustomEvent&#xD;&#xA;YAHOO.util.Event.addListener&#xD;&#xA;YAHOO.util.Event.getEvent&#xD;&#xA;YAHOO.util.Event.getTarget&#xD;&#xA;YAHOO.util.Event.preventDefault&#xD;&#xA;YAHOO.util.Event.stopEvent&#xD;&#xA;YAHOO.util.Event.stopPropagation&#xD;&#xA;YAHOO.util.Event.stopEvent&#xD;&#xA;YAHOO.util.Anim&#xD;&#xA;YAHOO.util.Motion&#xD;&#xA;YAHOO.util.Connect.asyncRequest&#xD;&#xA;YAHOO.util.Connect.setForm&#xD;&#xA;YAHOO.util.Dom&#xD;&#xA;YAHOO.util.Event"> <target name="All css" file="$output\css\ext-all.css" debug="True" shorthand="False" shorthand-list="YAHOO.util.Dom.setStyle&#xD;&#xA;YAHOO.util.Dom.getStyle&#xD;&#xA;YAHOO.util.Dom.getRegion&#xD;&#xA;YAHOO.util.Dom.getViewportHeight&#xD;&#xA;YAHOO.util.Dom.getViewportWidth&#xD;&#xA;YAHOO.util.Dom.get&#xD;&#xA;YAHOO.util.Dom.getXY&#xD;&#xA;YAHOO.util.Dom.setXY&#xD;&#xA;YAHOO.util.CustomEvent&#xD;&#xA;YAHOO.util.Event.addListener&#xD;&#xA;YAHOO.util.Event.getEvent&#xD;&#xA;YAHOO.util.Event.getTarget&#xD;&#xA;YAHOO.util.Event.preventDefault&#xD;&#xA;YAHOO.util.Event.stopEvent&#xD;&#xA;YAHOO.util.Event.stopPropagation&#xD;&#xA;YAHOO.util.Event.stopEvent&#xD;&#xA;YAHOO.util.Anim&#xD;&#xA;YAHOO.util.Motion&#xD;&#xA;YAHOO.util.Connect.asyncRequest&#xD;&#xA;YAHOO.util.Connect.setForm&#xD;&#xA;YAHOO.util.Dom&#xD;&#xA;YAHOO.util.Event">
<include name="css\reset.css" /> <include name="css\reset.css" />
@@ -25,6 +25,7 @@
<include name="css\layout.css" /> <include name="css\layout.css" />
<include name="css\progress.css" /> <include name="css\progress.css" />
<include name="css\dialog.css" /> <include name="css\dialog.css" />
<include name="css\slider.css" />
</target> </target>
<file name="images\basic-dialog\gray\close.gif" path="images\basic-dialog\gray" /> <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" /> <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\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\collapse.gif" path="images\vista\basic-dialog" />
<file name="images\vista\basic-dialog\expand.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\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\left-btn.gif" path="images\default\shared" />
<file name="images\default\shared\right-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" /> <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\bg.png" path="images\default" />
<file name="images\default\shadow.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\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="yui-ext-resources.jsb" path="" />
<file name="resources.jsb" path="" /> <file name="resources.jsb" path="" />
<file name="css\box.css" path="css" /> <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-blue.gif" path="images\default\box" />
<file name="images\default\box\corners.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" /> <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\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.png" path="images\default\window" />
<file name="images\default\window\top-bottom.psd" 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="css\editor.css" path="css" />
<file name="images\default\editor\tb-sprite.gif" path="images\default\editor" /> <file name="images\default\editor\tb-sprite.gif" path="images\default\editor" />
<file name="css\borders.css" path="css" /> <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-over.gif" path="images\default\tree" />
<file name="images\default\tree\arrow-open.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="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> </project>