﻿

/*nfDialog - Styles*/
.nfDialog_GreyOutMask
{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9990;
    background-color: #000;
    filter: alpha(opacity=50);
    opacity: .50;
}
.nfDialog_Button
{
    display: inline-block;
    border: solid 1px #000000;
    font-family: Arial,Verdana;
    border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    border-radius: 2px 2px 2px 2px;
    margin-top: 4px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    background-color: #333;
    width: 100px;
    color: #FFF;
    margin-left: 25px;
    margin-right: 25px;
    text-align: center;
    font-weight: bold;
}

#dvnfDialog_Box_Yes
{
    float: left;
    margin-left: 40px;
}
#dvnfDialog_Box_No
{
    float: right;
    margin-right: 40px;
}

.nfDialog_Button:hover
{
    background-color: #AAA;
    color: #000;
}

/* ATS-E490: visible keyboard focus indicator for dialog buttons (Close / Yes / No).
   These buttons are rendered outside the page form and are focused programmatically,
   so plain :focus is used (not :focus-visible). The halo ring matches the rest of the
   app's focus indicator in both the Neon (new) and classic (old) UI. */
.nfDialog_Button:focus,
.nfDialog_Button:focus-visible,
.nfDialog_DialogBox [role="button"]:focus,
.nfDialog_DialogBox [role="button"]:focus-visible
{
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #1162ee, 0 0 0 4px #bad7ff;
}

.nfDialog_DialogBox
{
    border: solid 2px #456;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #EEEEEE;
    color: #000;
    font-weight: bold;
    font-size: 10pt;
    width: 400px;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 9999;
    vertical-align: middle;
    padding: 0px 10px 0px 10px;
}
.nfDialog_DialogBox_Tasks
{
    display: inline-block;
    border: 0;
    margin-bottom: 10px;
    width: 350px;
    text-align: center;
}

.nfDialog_DialogBox_Message
{
}
