﻿@import "styles-linklist.css?v=2b";

#printable #translation {
    display: table;
    column-count: 1;
    -webkit-column-count: 1;
    -moz-column-count: 1;

    max-width: initial;
    margin-left: initial;
    margin-right: initial;
}
#printable #table-of-sections {
    column-width: 8em;
}

.glossary-caption {
    padding: 0em;
}

.glossary-entry {
    display: table-row;
    width: 100%;
}

.uniqueness {background-color: var(--boldhilite);}
.coherence  {background-color: var(--litebg);}
.uniqueness.coherence {background-color: #ff4000;} /* RED */
.excused    {background-color: #d8d8d8;} /* LIGHT GRAY */

A:target {
    background-color: var(--boldhilite);
    border-radius: var(--cornerradius);
}

.gloss-heb {
    display: table-cell;
    font-size: 120%;
    font-weight: bold;
}

.gloss-count {
    display: table-cell;
    font-style: italic;
    text-align: right;
}

.gloss-eng {
    display: table-cell;
    width: 6em;
    padding: 0em 1em;
}

.gloss-xlit {
    font-style: italic;
}

.gloss-xlit::after {
    content: '. ';
}

.gloss-comment {
    display: table-cell;
}

summary {
    margin-left: -2em;
}
details {
    padding-left: 2em;
    position: relative;
}
details::before {
    content: '';
    position: absolute;
    top: 1.1lh;
    left: 1em;
    height: calc(100% - 1.2lh);
    width: 1px;
    background-color: black;
}

@media print {
    .panel, #translation {
        width: 100vw;
        margin: 0;
    }
    .gloss-heb {
        max-width: 4em;
    }
}

details summary {
  cursor: pointer;
}