/* 
 * THIS FILE IS MEANT TO CONTAIN ANY OVERRIDES MADE ON THE SENCHA CSS CLASSES.
 * IDEALLY, WE SHOULD REQUEST SENCHA TO IMPLEMENT THE CHANGE AND PROVIDE IT IN THE NEXT RELEASE INSTEAD, BUT DEPENDING UPON BUG SEVERITY IT MIGHT NOT ALWAYS BE POSSIBLE.
 * 
 * PLEASE SPECIFY THE FIDDLE ID IN THE COMMENTS WHICH REPLICATES THE SCENARIO FOR WHICH THE OVERRIDE WAS INTRODUCED
 * ALSO SPECIFY COMMENTS IN FIDDLE TOO FOR EASIER UNDERSTANDING/REPLICATION OF THE PROBLEM
 * SENCHA COULD HAVE FIXED THIS IN THE NEXT RELEASE AND IT WOULD BE VERY EASY TO CHECK IT ON THE FIDDLE RATHER THAN GOING THROUGH CHANGE HISTORIES AND BUGS.
 * IF FIXED, THE CORRESPONDING OVERRIDE SHOULD BE REMOVED.
 */

/********************* Start ********************* Grid Control************************************/
/* Override to disable the ext js border style*/
/* This is still required. When we have a table control with multi select enabled and using a classic theme, a border is displayed around in keyboard mode */
.x-keyboard-mode .x-grid-item-focused .x-grid-cell-inner:before {
    border: none;
}
/***********************End**************************************/


/********************* Start ********************* Capture checkbox control*********************/
/* Added below overrides to capture checkbox control */
.cebpm-capture-field.fieldSelected .x-form-cb-wrap-inner {    
    background-color: #FFFF00;
    height: 13px;
    width: 13px;
    margin-top: 5px;
}

/* Added to disable margin top to capture checkbox control */
.cebpm-capture-field.fieldSelected .x-form-cb-default {
    margin-top: 0px;
}

/* Added to apply opacity to capture checkbox control */
.cebpm-capture-field.fieldSelected .x-form-checkbox-default {
    opacity: .70;
}
/***********************End**************************************/

/********************* Start ********************* Capture multithumbnailspanel control*********************
/* overriden multithumbnailspanel capture control border */ 
.multithumbnailspanel .x-grid-cell, .multithumbnailspanel .x-grid-td {
    border-bottom: 1px solid #799cc8;
}
/********************* End ****************************************/


/********************* Start ********************* Capture *********************
/* Added as part of issue 1125045 */
.x-fieldset .x-form-item {
    display: table;
}
/***********************End**************************************/