/*
 * Copyright 2026, TeamDev. All rights reserved.
 * TeamDev PROPRIETARY and CONFIDENTIAL.
 * Use is subject to license terms.
 */

/*
  Customized styles for the Prism TreeView with the highlighted lines.
*/

.treeview-holder pre[data-line] {
    position: relative;
}

.treeview-holder pre[data-line] .line-highlight {
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 16px;
    background: hsla(0, 0%, 60%, .08);
    pointer-events: none;
    line-height: inherit;
    white-space: pre;
}

@media print {
    .treeview-holder pre[data-line] .line-highlight {
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
}
