﻿/* 
 * Style used by the label output mode.
 * Applied to the error labels that get positioned after an input.
 */
label.error {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background-position: left center;
    background-repeat: no-repeat;
    color: #FF0000;
    margin-left: 2px;
    padding: 2px;
    padding-left: 18px;
}


/*
 * Styles used by the modal output mode.
 * '.validity-modal-msg' is applied to the modal boxes 
 * and '.validity-modal-msg:hover' is applied to suggest 
 * to the user that the boxes are clickable.
 */

.validity-modal-msg {
    background-color: #999;
    border: solid 1px #000;
    cursor: pointer;
    padding: 4px;
    position: absolute;
    z-index: 2;
}

.validity-modal-msg:hover { background-color: #aaa; }

/*
 * Styles used by the summary output mode.
 * '.validity-summary-container' is a container on the page that should contain a UL 
 * which is the actual summary. The container can hold 
 * an extra bit of text (or anything really) that explains what the summary is.
 * '.validity-erroneous' is applied to every input that fails.
 */

.validity-summary-container { display: none; }

.validity-summary-output ul { }

.validity-erroneous { border: solid 2px #f56600 !important; }



.validity-tooltip {
    background-color: #f56600;
    
    border-color: #555;
    
    border-style: solid;
    border-width: 1px;
    
    color: #111;
    cursor: pointer;
    padding: 3px;
    position: relative;
    
    width: 16em;
    z-index: 1003;
}

.validity-tooltip:hover { border-color: #333; }

.validity-tooltip .validity-tooltip-outer, .validity-tooltip .validity-tooltip-inner {
    background: none;
    border-right-width: 0;
    bottom: auto;
    height: 0;
    position: absolute;
    width: 0;
}

.validity-tooltip .validity-tooltip-outer {
    border-bottom: 24px solid transparent;
    border-color: #333;
    
    border-left-width: 0px;
    border-right-color: inherit;
    
    border-right-style: solid;
    border-right-width: 20px;
    border-style: solid;
    
    border-top: 0px solid transparent;
    left: -21px;
    top: -1px;
}

.validity-tooltip .validity-tooltip-inner {
    border-bottom: 24px solid transparent;
    border-left-width: 0px;
    border-right: 20px solid #f56600;
    border-top: 0px solid transparent;
    left: 3px;
    top: 1px;
}