tailbone/tailbone/static/css/timesheet.css
Lance Edgar 123f5ce0c6 Add support for "full" schedule and time sheet views
Temporarily removes support for viewing current user's time sheet; that
will be added back in soon.
2016-05-10 13:08:32 -05:00

84 lines
1.4 KiB
CSS

/**********************************************************************
* styles for time sheets / schedules
**********************************************************************/
/******************************
* header table
******************************/
.timesheet-header {
width: 100%;
}
.timesheet-header td.filters {
vertical-align: bottom;
width: 100%;
}
.timesheet-header td.filters .field {
width: auto;
}
.timesheet-header td.menu {
padding: 0.5em;
vertical-align: top;
white-space: nowrap;
}
.timesheet-header td.tools {
margin: 0;
padding: 0;
text-align: right;
vertical-align: bottom;
white-space: nowrap;
}
.timesheet-header .week-picker label {
margin-left: 1em;
}
/******************************
* timesheet table
******************************/
.timesheet {
border-bottom: 1px solid black;
border-right: 1px solid black;
clear: both;
margin-top: 0.3em;
width: 100%;
}
.timesheet thead th,
.timesheet tbody td {
border-left: 1px solid black;
border-top: 1px solid black;
}
.timesheet tbody {
background-color: white;
}
.timesheet tbody tr:nth-child(odd) {
background-color: #e0e0e0;
}
.timesheet tbody td {
padding: 5px;
text-align: center;
}
.timesheet tbody td.employee {
text-align: left;
}
.timesheet tbody p.shift {
display: block;
margin: 0;
}
.timesheet tbody tr.total {
font-weight: bold;
}