/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11.12.2016, 01:08:50
    Author     : sascha
*/

[draggable=true] {
  cursor: move;
}


.container {
    justify-content: flex-start;
    display:flex;
    align-items: stretch;
    background-color: black;
    height: 40px;
}

#control {
  font-family: 'Sans', sans-serif;
}

#control .item {
    margin-left: 2px;
    font-size: 24px;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    margin: 2px;
    background-color: black;
}

#control .item:hover {
    background-color: #333;
}

#control select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    padding-right: 30px;
    background-color: black;
    cursor: pointer;
    outline: none;
}

select option {
    background-color: black;
    color: #fff;
}

#coll-selector {
  position: relative;
  right: 20px;
  pointer-events: none;
  color: #fff;
} 

.table_display {
    display: grid;
    transition: 0.25s;
    margin: 2px 0px 2px 0px;
}

.table_header > div{
    background-color: grey;
    text-overflow: ellipsis;
    overflow: hidden; 
    white-space: nowrap;
}

.table_header > div > .left-end{
    background-color: grey;
    text-overflow: ellipsis;
    overflow: hidden;
}

.table_item{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.table_row > .table_item{
    background-color: lightgrey;
}

.table_row:hover > .table_item  {
/*    white-space:normal;*/
    background-color: lightblue;
}

.table_row.selected  > .table_item{
/*    white-space:normal;*/
    background-color: lightgreen;
}


.table_item.selected {
    background-color: salmon;
    white-space: normal;
}

th {
    height:1.5em;
}

th:not(.moving):hover .icon {
/*    visibility: visible;*/
    display: inline;
}

th:not(.moving):hover :not(.icon) {
    display: none;
}

.icon {
    color: graytext;
    font-size:150%;
    /*visibility: hidden;*/
    display: none;
    cursor: default;
}
.icon:hover {
    color: black;
}

.icon-sort.active {
    color: black;
}

.icon-insert {
    color: lightblue;
}

.highlight-left {
/*    content: "*";
    font-weight:bold;
    */border-left: medium solid mediumblue;
}
.highlight-right {
    border-right: medium solid mediumblue;
}
.moving {
    color: lightgrey;
}

.scroller {
    background-color: white;
}
.scroller p {
    margin:0;
}
.scrollbox {
    background-color:darkgray;
}
.scrollbox:hover {
    background-color: black;
}

.entryContainer {
    display: grid;
    white-space: nowrap;
    grid-column-gap: 20px;
    grid-row-gap: 5px;
    grid-template-columns: auto auto auto auto auto auto;
}

.detailContainer {
    display: grid;
    white-space: nowrap;
    grid-column-gap: 20px;
    grid-row-gap: 5px;
    font-size: x-large;
}


.mutationContainer {
    display: grid;
    justify-content: start;
    white-space: nowrap;
    grid-column-gap: 10px;
    grid-row-gap: 5px;
    grid-template-columns: auto auto auto auto auto auto;
}


.entry_field {
    margin-right: 1em;
}

.entry_error {
    background-color: orange;
}

.view_field {
    background: #DDD;
      white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail_mutation.box {
    margin-right: 20px;
}


.detail_mutation.left {
    background-color: #ccc;
    border: 1px solid black;
    border-radius: 7px 0px 0px 7px;
    padding: 2px 5px;
    font-style: italic;
}

.detail_mutation.middle {
    border: 1px solid black;
    border-radius: 0px 0px 0px 0px;
    padding: 2px 5px;
}

.detail_mutation.right {
    border: 1px solid black;
    border-radius: 0px 7px 7px 0px;
    padding: 2px 5px;
}


.locksymbol.locked {
    color: black;
}

.locksymbol:hover {
    color: black;
}

.ui-slider .ui-slider-handle {
    height: 0.6em;
}