/*
Copyright 2019 dinel.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

/* 
    Created on : 30-Jan-2019, 23:11:27
    Author     : dinel

    The styles for concordances in a report
*/

.left-context {
    width: 355px;
    display: inline-block;
}
.left-context div {
    overflow:hidden;
    width: 100%;
    white-space: nowrap;
    text-align: right;
}

.keyword {
    display: inline-block;
    font-weight: bold; 
}

.keyword div {
    overflow:hidden;
    width: 100%;
    white-space: nowrap;
    text-align: center;
}

.right-context {
    width: 355px;
    display: inline-block;
}

.right-context div {
    overflow:hidden;
    width: 100%;
    white-space: nowrap;
    text-align: left;
}       

.concordance {
    counter-increment: line;
    margin: 6px;
    width: 100%;
    font-size: 90%;
}

.concordance:before {
    content: counter(line) ".";
    vertical-align: top;
    margin: 6px 1em;
    width: 30px;
    text-align: right;
    display: inline-block;
}

.concordance:hover {
    background-color:  #eeffff;
}

.details {
    display: inline-block;
}

#results {
    counter-reset: line;
}

.common-highlighed {
    border-left: thick blue solid;
}

.more-info {
    margin: 0.5em 5em 0.5em 5em;
}

.more-info-shown {
    padding: 12px;
    border: thin dotted black;
}