table.css 951 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
.number-cell {
    font-family: Arial;
    text-align: right;
}

.check-cell {
    text-align: center;
}

.number-header-cell {
    text-align: right;
    padding-left: 8px;
}

th:not(.number-cell):not(.check-cell), td:not(.number-cell):not(.check-cell) {
    /*text-align:left;*/ /* fix datapicker text-align issue */
}

.ui-grid-header-cell-row {
    background-color: #727671;
    color: #fff;
    font-weight: normal;
}


.ui-grid-cell-contents {
    padding: 12px;
    line-height: 1.42857143;
    font-size: 14px;
}

.ui-grid-cell {
    border-bottom: 1px solid #d4d4d4;
    cursor: pointer;
}

.ui-grid-row.ui-grid-row-selected > [ui-grid-row] > .ui-grid-cell {
    background-color: #fed5a9;
}

.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-cell:last-child {
    border-right-color: #d4d4d4;
}

.ui-grid-row .ui-grid-cell.ui-grid-row-header-cell {
    background-color: none;
}

.ui-grid-invisible {
    display: none;
}