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

// --------------------------------------------------
// MIXINS
// --------------------------------------------------
@mixin buttonPanelListStyle() {
background: none;
width: $panelWidth - 35;
padding: 10px;
margin: 0 15px;
border: none;
border-radius: 0px;
font-size: 16px;
border-bottom: 1px solid $COLOR_VA_BLUE;
text-align: left;
}
@mixin dropShadow() {
-webkit-box-shadow: 7px 7px 11px -3px rgba(0, 0, 0, 0.63);
-moz-box-shadow: 7px 7px 11px -3px rgba(0, 0, 0, 0.63);
box-shadow: 7px 7px 11px -3px rgba(0, 0, 0, 0.63);
}
@mixin outsetShadow() {
-webkit-box-shadow: 1px 0px 11px 1px rgba(0, 0, 0, .55);
-moz-box-shadow: 1px 0px 11px 1px rgba(0, 0, 0, .55);
box-shadow: 1px 0px 11px 1px rgba(0, 0, 0, .55);
}

// Sets background color of element to XYZ, font is obviously a contrasting color.
// Since this combo is re-used app-wide, making it a mixin
@mixin selectedAndContrastColors() {
background-color: $selectedColor;
color: $contrastColor;
}

// --------------------------------------------------
// GENERAL TAG STYLES
// --------------------------------------------------
html, body {
overflow: hidden;
word-wrap: break-word;
-webkit-overflow-scrolling: touch;
}
body {
padding-top: 20px;
padding-bottom: 20px;
-webkit-transform: translate3d(0,0,0);
}
pre {
word-wrap: normal;
word-break: normal;
}
a.btn.btn-primary {
color: #3979b0;
text-decoration: none;
cursor: pointer;
}
a:focus, a:hover {
color: #256eae;
}
a {
color: #256eae;
text-decoration: underline;
cursor: pointer;
}

li, li p {
overflow: visible;
}

label {
font-size: 14px;
font-weight: normal;
color: #124664;
}

fieldset {
> legend {
color: #124664;
font-weight: bold;
font-size: 14px;
border-bottom: 0;
margin-bottom: 0;
}
}


// --------------------------------------------------
// HELPERS
// --------------------------------------------------
.emphasis {
font-style: italic;
font-weight: bold;
}

.full-width {
width:100%;
}

.full-height {
height:100%;
}

.no-results-message {
margin-top: 20px;
margin-bottom: 20px;
padding: 0 5%;
}

.clamp-truncation {
color: #3979b0;
font-weight: normal;
text-decoration: none;
}

.active .clamp-truncation {
color: #fff;
}

.top-space {
padding-top: 0.8em;
}

.indent {
margin-left: 20px;
}

.bold {
font-weight: bold;
}

.bold-label {
label {
font-weight: 700;
}
hr {
border-top: 1px solid #e5e5e5 !important;
}
}

.text-nowrap {
white-space: nowrap;
}

.alert {
&.alert-urgent {
background-color: #fff;
border-color: #d60000;
border-width: 1px;
border-radius: 0px;
h4 {
color: #d60000;
}
}
}

[role="button"], [role="link"] {
cursor: pointer;
}

.transition-closed {
display: none;
}

@media screen and (min-width: 768px) {
.transition-closed {
display: block;
}
}

// Delay
// --------------------------------------------------
.content-loading .page {
opacity: 0;
}
.content-loaded .page {
opacity: 1;
}

// --------------------------------------------------
// MAIN CONTENT
// --------------------------------------------------
.main-content {
background-color: $mainContentBackground;
@include outsetShadow();
}
.main-content .main-header, .snap-drawer .panel-header {
height: 45px; // primary-content scroll and footer position issue - h1.main-title padding is insufficient
position: relative;
padding-bottom: .25em;
padding-top: .25em;
}
.main-content .primary-content, .main-content .secondary-content {
overflow-y: auto;
overflow-x: hidden;
padding: 0px;
}
.main-content .secondary-content {
@include outsetShadow();
z-index: 1;
left: 0;
}
.main-content .primary-content {
z-index: 0;
right: 0;
}

// Main and Content Headers
// --------------------------------------------------
.main-header {
margin-bottom: 0;
}
.primary-header, .secondary-header {
height: 40px;
background: $contentHeaderBackground;
color: #ffffff;
text-align: center;
padding-top: 10px;
h2 {
font-size: 16px;
display: inline;
}
> button {
right: 5px;
}
button {
padding: 0;
position: absolute;
top: 6px;
width: 30px;
height: 30px;
color: $COLOR_WHITE;
background: none;
border: none;
i {
font-size: 22px;
}
}
button.right {
right: 10px;
}
button.left {
left: 10px;
}
button.text-button {
top: 4px;
padding: 2px;
width: auto;
border: 1px solid #fff;
border-radius: 8px;
}
}

// Main and Panel Header Titles
// --------------------------------------------------
.main-title, .panel-title {
position: absolute;
width: 100%;
padding: 8px;
font-size: 18px;
line-height: 20px;
margin: 0 auto;
text-align: center;
}

.main-title {
color: $COLOR_WHITE;
font-weight: 600;
}

.iOS-VO-overlap-accessible {
z-index: 9999;
}

h1.main-title {
padding: 8px 50px;
}

h2.panel-title > button.sr-only {
background-color: inherit;
color:#ffffff;
}

// unused, acts as base class to be extended for others
.main-header-btn {
height: 40px;
width: 40px;
padding: 4px;
border: none;
background: none;
color: $COLOR_WHITE;
font-size: 24px;
line-height: 28px;
cursor: pointer;
position: absolute;
z-index: 99999;
}

.main-header-btn-right {
@extend .main-header-btn;
right: 6px;

}
.main-header-btn-left {
@extend .main-header-btn;
left: 6px;
}

// Primary / Page Content
// --------------------------------------------------
.primary-content .primary-header button.exit {
position: absolute;
top: 4px;
right: 5px;
}
.primary-content .intro p {
font-size: 16px;
font-weight: 500;
color: dimgray;
padding: 155px 5% 0 5%;
position: relative;
top: 5%;
}
.page-container {
margin: 10px;
.page {
margin: 0;
}
}
.page {
@include dropShadow();
background-color: $pageBackground;
border: 1px solid $pageBorder;
border-radius: $borderRadiusLarge;
padding: 12px 10px 10px 10px;
margin: 12px 10px 10px 10px;
position: relative;
}
.page hr {
border-top: 1px solid dimgray;
margin-top: 15px;
margin-bottom: 15px;
}
.page hr.page-width {
margin-left: -10px;
margin-right: -10px;
}
.page hr.content-width {} .primary-content .intro {
position: relative;
top: 33%;
height: 67%;
background-position: center top;
background-size: 151px 136px;
background-repeat: no-repeat;
text-align: center;
}
// Secondary Content List
// --------------------------------------------------
.secondary-content {
background-color: $COLOR_WHITE;

.secondary-list {
width: 100%;
margin: 0px;
padding: 0px;

li {
list-style: none;
margin: 0px;
padding: 0px;
word-break: break-word;

button div[class^="col-"] { padding: 0; }
button.selected { @include selectedAndContrastColors(); }
button div i.icon {
font-size: large;
padding-right: 10px;
vertical-align: middle;
}
}
}
}

// Main Footer
// --------------------------------------------------
footer.main-footer {
position: absolute;
text-align: right;
padding: .5em;
background-color: $COLOR_DARK_GRAY;
}
footer.main-footer > span {
margin-right: 20px;
}


// --------------------------------------------------
// SIDE PANELS / SNAP DRAWERS
// --------------------------------------------------
.snap-drawer {
.panel-header {
color: $contrastColor;
background-color: $panelHeaderBackground;
}

ul.panel-menulist {
list-style: none;
padding-left: 0;
margin-bottom: 0;

li {
a { color: #5d9bd1; }
button { @include buttonPanelListStyle(); }

button.selected {
@include selectedAndContrastColors();
}

&.selected {
@include selectedAndContrastColors();
position: relative;
top: -1px;
}

&.nav-menu-btn {
background-color: $COLOR_DARK_GRAY;
color: $COLOR_WHITE;

button {
text-shadow: none;
color: $COLOR_WHITE;
padding-left: 30px;
border: none;
}

&:not(:last-child) { border-bottom: 1px solid $COLOR_VERY_LIGHT_GRAY; }
}
}

i.icon {
position: relative;
left: -20px;
top: 2px;
font-size: 20px;
}
}
}

div[snap-drawer] {
height: 100%;
overflow-y: auto;
background: $panelBackground;
}
div[snap-drawer="left"] {
background-color: $panelBackground;
}
div[snap-drawer="right"] {
background-color: $panelBackground;
}

// --------------------------------------------------
// FORMS
// --------------------------------------------------
*:disabled {
color: #757575;
}
.label {
white-space: normal;
}
.form-control {
color: #000000;
padding: 6px;
}
.form-control-inline {
display: inline;
width: auto;
height: 29px;
padding: 0px 2px 0px 4px;
border: 1px solid $COLOR_VA_BLUE;
}
.form-button {
margin-top: 10px;
min-width: 80px;
min-height: 35px;
}

// --------------------------------------------------
// BOOTSTRAP OVERRIDES
// --------------------------------------------------

// Navbar
// --------------------------------------------------
.navbar {
min-height: 30px;
margin-bottom: 0px;
}
.navbar-default {
color: $contrastColor;
background: $mainHeaderBackground;
}
.navbar .navbar-brand {
color: $contrastColor;
}
.navbar-fixed-top, .navbar-fixed-bottom {
border-width: 0;
}
.navbar-nav {
margin: 0 !important;
> li {
float: left;
}
}
.navbar-left {
float: left;
}
.navbar-right {
float: right;
}

// Button
.btn.disabled, .btn[disabled] {
opacity: 0.72;
background-color: $COLOR_LIGHT_GRAY;
border-color: $COLOR_DARK_GRAY;
color: $COLOR_DARK_GRAY;
}
.btn-secondary {
@extend .btn-default;
}

.btn:focus {
-moz-box-shadow: 0 0 12px rgb(59, 153, 252);
-webkit-box-shadow: 0 0 12px rgb(59, 153, 252);
box-shadow: 0 0 12px rgb(59, 153, 252);
}

// Panel
.panel > .panel-heading {
color: $COLOR_VA_BLUE;
font-weight: normal;
font-size: 15px;
}

// Other
// --------------------------------------------------
@media all and (min-width: 0px) {
.container-narrow > hr {
margin: 30px 0;
}

[class*="col-"] {
min-height: 0px !important;
}
[class*="input-group-"] label {
margin-top: 0px;
}
.checkbox-inline, .radio-inline {
min-width: 66px;
}
.filter-collapse.collapse:not(.in) {
display: block;
overflow: hidden;
height: 1px !important;
margin: -1px !important;
clip: rect(0, 0, 0, 0);
border-top: #bababa solid 1px;
}
.filter-collapse.collapse {
min-height: 1px !important;
}
.modal:not(:last-of-type) {
display: none !important;
}
}