/*
 * Copyright (C) 2016 Sam Kumar, Michael Andersen, and the University
 * of California, Berkeley.
 *
 * This file is part of Mr. Plotter (the Multi-Resolution Plotter).
 *
 * Mr. Plotter is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Mr. Plotter is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with Mr. Plotter.  If not, see <http://www.gnu.org/licenses/>.
 */

.outline {
    border: 1px solid black;
    margin: 1px;
}
td.checkboxlabel {
    font-weight: bold;
}
input.datefield {
    width: 200px;
}
input.axisname {
    width: 75px;
}
td.axisrangeselect {
    text-align: right;
}
svg.chart {
    font-size: 16px;
    font-family: serif;
}
.unclickedchart {
    cursor: url(../img/openhand.cur), move;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    cursor: grab;
}
.clickedchart {
    cursor: url(../img/closedhand.cur), move;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.jstree-contextmenu {
    z-index: 99999; /* So the context menu isn't hidden. */
}
.jstree-node {
    position: relative;
}
div.permalink, .legend .streamName, .axes .axisstreams {
    word-wrap: break-word;
}
.legend td {
    padding: 2px;
}
.streamName {
    cursor: pointer;
}
.metadataDisplay > h3 {
    margin-top: 0px;
}
input.thin-margin-text {
    padding-left: 5px;
    padding-right: 5px;
}
table.dispTable > tr > td, tbody.axes > tr > td {
    vertical-align: top;
}
.axissettingtable > tr, .axissettingtable > tr > td {
    text-align: center;
}
.axissettingtable > tr > div, .axissettingtable > tr > td {
    width: 100%;
}
.axissettingtable {
    table-layout: fixed;
}
rect.vertCursor {
    cursor: col-resize;
}
rect.horizCursor {
    cursor: row-resize;
}
div.streamTree {
    padding-left: 0px;
}
div.leftColumn {
    margin-left: 10px;
}
div.timeSelection {
    margin-left: 15px;
    margin-right: 15px;
}
ul.loginList {
    padding: 5px;
}
div.loginmessage {
    color: red;
}
.streamTreeOptions {
    width: 100%;
}
.streamTreeOptions > div {
    width: 50%;
}
input[name="export-type"] + span {
    margin-left: 10px;
}
.modal-footer.export-jupyter {
    text-align: left;
}
.export-jupyter pre code {
    white-space: unset;
}
.toggleIfDataExists.show, .modal-footer.show {
    display: block;
}
.toggleIfDataExists.hide, .modal-footer.hide {
    display: none;
}
.modal-footer .btn + .toggleIfDataExists.show {
    display: inline-block !important; /* unfortunately a library decided to use !important so now we have to compete with them */
    margin-bottom: 0;
    margin-left: 5px;
}