﻿/*css for input readonly/disabled*/
/*datetime property can use string input to show value*/
/*can refer CRUDCurrecyConversion*/
/*Empty cache and hard reload when update css*/

input:read-only, input:disabled {
    background-color: #f5f5f5 !important;
    pointer-events: auto !important;
    color: black !important;
    cursor: not-allowed !important;
}

    input:read-only:hover, input:disabled:hover {
        border-color: lightgray !important;
    }
    input:read-only:focus, input:disabled:focus {
        border-color: lightgray !important;
        box-shadow: none !important;
    }

.ant-select-disabled span {
    color: black !important;
}
