Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

@import './../../../scss/themes/variables_ars_1.scss';
.modal-overlay {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 4001;
overflow: auto;
background: rgba(0, 0, 0, 0.55);
transition: opacity 300ms ease-in-out;
opacity: 0;
visibility: hidden; // overflow-y: scroll;
&.white {
background: rgba(255, 255, 255, 0.5);
}
&.clear {
background: transparent;
}
}

.modal-content {
position: relative;
top: 48%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 550ms ease-in-out;
width: 480px;
}

.spinner-content {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 480px;
}

.modal-show {
opacity: 1;
visibility: visible;
&.modal-overlay > .modal-content {
top: 50%;
opacity: 1;
}
}

.close {
// Makes circle 'close' icon for dialog box
margin: 15px;
float: right;
width: 24px;
height: 24px;
border-radius: 12px;
border: 2px solid #fff;
opacity: 0.75;
background-color: $gray-base;
font-size: 24px;
line-height: 20px;
text-align: center;
color: #fff;
text-decoration: none;
cursor: pointer;
&:hover {
opacity: 1;
text-decoration: none;
}
}

.close-down a.close {
margin-top: 30px; // TODO: Solve margin mystery for modal close button.
}

// TODO: Remove CSS hack
.fix > .rarc-code:first-child > .label,
.fix > .attachment-links:first-child > .label {
// background-color: red;
color: #000;
}

.loading-box {
// For modal-spinner
height: 111px;
width: 180px;
margin: 15px auto 0;
background-color: #fff;
border-radius: 6px;
border: 1px solid $gray-base;
box-shadow: $shadow-base;
}