<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* This css file handles 508 keyboard compliance by
   adding a "focus ring" around elements that can be navigated to and interacted
   with by the keyboard
 */

/* stylelint-disable no-descending-specificity */

/* CSS Resets */
#set-modal-printer-close-id:focus {
    border: none;
    outline: none;
}

/* Self Service Portal Page */

/* To Highlight set a shadow */
#self-service-portal-application-menu-button.key-stroke-manager-has-focus,
#breadcrumbs ul li a.key-stroke-manager-has-focus {
    color: #9cf;
}

/* add padding to the end so the highlight box is complete */
#breadcrumbs {
    padding-right: 1px;
}

/* Arrow key focus class */
.key-stroke-manager-arrow-has-focus {
    background-color: #bcd5fc !important; /* stylelint-disable-line declaration-no-important */
    border: 2px solid #305dab;
    outline: #305dab double 2px !important; /* stylelint-disable-line declaration-no-important */
}

#self_service_portal_user_menu_sign_out:focus {
    background-color: #fff;
    border: 2px solid #305dab;
}

/* Main Body and Mobile Menu */
#map-printer-list tr:focus,
.ui-dialog button:focus,
.ui-dialog a:focus {
    outline: #305dab solid 2px;
}

/* Print Job Release Portal */
#print-job-management-data .row_checkbox:focus,
#print-job-management-data a.button:focus,
#ipaddressrange-printer-search-results .row_checkbox:focus {
    outline: #305dab solid 2px;
}
</pre></body></html>