﻿.vertical-space {
    margin-top: 23px;
}

.small-vertical-space {
    margin-top: 10px;
}

.correction input[type=number] {
    padding: 6px 12px 6px 12px;
    border: 1px solid 0xccc;
}

.correction .table td {
}

    .correction .table td .btn {
        display: table-cell;
    }

.table .ui-selected {
    background-color: yellow
}

    .table .ui-selected:hover {
        background-color: orange;
    }

.space-from-left {
    margin-left: 10px;
}

.ajax-table {
    table-layout: fixed;
}

.ajax-table-cell {
    text-align: justify;
}



.ajax-table-collapsed-cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
    padding-top: 5px;
}


    .ajax-table-collapsed-cell:first-line:after {
        background-color: red;
    }

.ajax-table-row {
    height: 50px;
}



.ajax-table .selected td {
    background-color: orange;
}
   
.ajax-table-collapsed-cell:hover {
    animation: expandtable 2s;
    text-overflow: inherit;
    white-space: pre-wrap;
}

@keyframes expandtable {
    to {
        overflow: visible;
    }
}
