/* Accessibilty related style tweaks for External KB
 * This stylesheet loaded for External KB display screens *but* not editing views
 */

a {
    color: #0A8484;
}

/* DON'T use css to display icon glyphs for alert messages on kb display views */
p.alert-info:before,
p.alert-warning:before,
p.alert-danger:before,
p.alert-success:before {
    display: none;
}

/* INSTEAD, display actual icons as svg in an <img> tag that can contain accessible alt text description */
.article-alert-icon {
    padding-right: 10px;
    height: 1.4rem;
    position: absolute;
    left: 10px;
    padding: 0 10px;
    object-position: 0px -1px;
    object-fit: contain;
    opacity: 0.65;
}