brewman/overlord/src/app/attendance/attendance.component.css
tanshu 6be1dd5a3a Moved to Angular 6.0
----

Pending
* Table width for the points column in incentive
* Linting
* keyboard navigation where it was used earlier
* can remove the unused totals calculated serverside in productledger
* spinner and loading bars
* Activate Guard for Employee Function tabs
* Progress for Fingerprint uploads
* deleted reconcile and receipe features as they were not being used
* focus the right control on component load
2018-06-09 17:05:11 +05:30

54 lines
655 B
CSS

.right {
display: flex;
justify-content: flex-end;
}
.center {
display: flex;
justify-content: center;
}
.present {
background-color: #228B22;
}
.off-day {
background-color: #87CEFA;
}
.on-leave {
background-color: #CD5C5C;
}
.absent {
background-color: #CD0000;
}
.half-day {
background-color: #98FB98;
}
.double-duty {
background-color: #006400;
}
.paid-leave-availed {
background-color: #EEEE00;
}
.casual-leave-availed {
background-color: #800080;
}
.compensatory-off {
background-color: #F5DEB3;
}
.half-day-pl {
background-color: #FFF68F;
}
.half-day-cl {
background-color: #FF00FF;
}