﻿/*jQuery UI styles overrides. Include this file in the budle config for jQuery UI*/

/*#region Styling the Autocomplete according to the site needs************************************************************** */

.ui-autocomplete {
    max-height: 500px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    /*padding-right: 20px;
    z-index:1000 !important;*/
}
.ui-autocomplete-input, .ui-autocomplete-input:focus{
    color: dodgerblue;
}

/*#endregion jQuery UI style overrides ****************************************************************************** */


/*#region FDA: giving active elements in controlgroups a lighter blue than the normal active elements*/
/*Had to specifiy this because by the theme roller there are no means to give controlgroup active items an appearance different than common active items. So rebuilding the theme by the roller would overwrite these settigs  */
label.ui-button.ui-widget.ui-checkboxradio-label.ui-controlgroup-item.ui-checkboxradio-checked.ui-state-active {
    background-color: #BFD0E4;
    border-color: #BFD0E4;
    color: #002F67;
}
/*#endregion***********************************/

