/*
This file gets loaded along with the rest of Ext library at the initial load
*/

/* feedback */
.netzke-feedback {
    position:fixed;
    left:25%;
    top:0;
    width:300px;
    z-index:20000;
}
/* Fix for Ext's EditableItem render problem (from http://www.extjs.com/forum/showthread.php?p=290267#post290267) */
/*.x-menu div.x-menu-item .x-menu-item-icon {
left: 0px;
margin-top: 0px !important;
position:relative;
background-position:center center;
}
.ext-ie .x-menu-item-icon {
left: -24px;
}
.ext-strict .x-menu-item-icon {
left: 3px;
}
.ext-ie6 .x-menu-item-icon {
left: -24px;
}
*/
/* write accordion header in bold */
.x-accordion-hd {
	font-weight:bold;
}

/* highilght new records in grid */
.grid-dirty-record {
  background: #fdd;
}

/* StatusBar - fixing forgotten "!important" */
.x-statusbar .x-status-busy {
    padding-left: 25px !important;
}

/* Tri-state checkbox */
.x-form-tscheckbox {
	height: 13px;
	width: 13px;
	background: url('basepack/ts-checkbox.gif') no-repeat 0 0;
	vertical-align: bottom;
}
.x-checkbox-checked .x-form-tscheckbox {
	background-position:0 -13px;
}
.x-checkbox-undef .x-form-tscheckbox {
	background-position:0 -26px;
}
.x-item-disabled .x-form-tscheckbox {
	background-position:-39px 0;
}
.x-form-check-over .x-form-tscheckbox {
	background-position: -13px 0;
}
.x-form-check-down .x-form-tscheckbox {
	background-position:-26px 0;
}
.x-checkbox-checked .x-form-check-over .x-form-tscheckbox {
	background-position:-13px -13px;
}
.x-checkbox-checked .x-form-check-down .x-form-tscheckbox {
	background-position:-26px -13px;
}
.x-checkbox-checked.x-item-disabled .x-form-tscheckbox {
	background-position:-39px -13px;
}
.x-checkbox-undef .x-form-check-over .x-form-tscheckbox {
	background-position:-13px -26px;
}
.x-checkbox-undef .x-form-check-down .x-form-tscheckbox {
	background-position:-26px -26px;
}
.x-checkbox-undef.x-item-disabled .x-form-tscheckbox {
	background-position:-39px -26px;
}