members-space-my-shifts.css 1.83 KB
Newer Older
1 2 3 4
#my_shifts {
    font-size: 1.8rem;
}

5
#incoming_shifts {
6 7
    height: 100%;
    flex-direction: column;
8
    display: none;
9 10
}

11 12
.loading-history, .loading-incoming-shifts {
    margin: 2rem 0;
13 14
}

15
#history {
16
    display: flex;
17 18
    flex-direction: column;
    display: none;
19
}
20 21 22

table.dataTable tbody td {
    text-overflow: ellipsis;
23 24
}

25 26 27 28 29 30 31 32 33 34 35 36

table.dataTable thead .sorting, 
table.dataTable thead .sorting_asc, 
table.dataTable thead .sorting_desc {
    background : none;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child:before, 
table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child:before  {
    color: #0275d8;
    background-color: white;
    font-weight: bold;
Damien Moulard committed
37
    /* border: none;
38 39 40
    font-size: 1.6rem;
    height: 16px;
    width: 16px;
Damien Moulard committed
41
    border-radius: 2em; */
42 43 44 45
}

@media screen {
    
46 47 48 49 50
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, 
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before  {
    color: #d8534f;
    background-color: white;
51
    font-weight: bold;
Damien Moulard committed
52
    /* border: none;
53 54 55
    font-size: 1.6rem;
    height: 16px;
    width: 16px;
Damien Moulard committed
56
    border-radius: 2em; */
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
}

.loading-more-history {
    display: none;
}

.more_history {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 2rem;
}

.more_history_button {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

table.dataTable.display tbody tr.row_partner_ok {
    background-color: #8feb8b;
}
table.dataTable.display tbody tr.row_partner_late {
    background-color: #ffdf7d;
82
}
83 84
table.dataTable.display tbody tr.row_partner_absent {
    background-color: #ff847b;
85
}
86
table.dataTable.display tbody tr.row_partner_amnistie {
Damien Moulard committed
87
    background-color: rgb(78, 78, 78);
88 89
    color: white;
}
Damien Moulard committed
90 91
table.dataTable.display tbody tr td {
    border-top: 1px solid rgb(119, 119, 119);
92
}