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.
This commit is contained in:
Lance Edgar 2016-05-10 13:08:32 -05:00
parent 181123dfaa
commit 123f5ce0c6
11 changed files with 327 additions and 165 deletions

View file

@ -3,24 +3,50 @@
* styles for time sheets / schedules
**********************************************************************/
/******************************
* header table
******************************/
.timesheet-header {
overflow: auto;
position: relative;
width: 100%;
}
.timesheet-header .week-picker {
bottom: 0.5em;
position: absolute;
right: 0;
.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%;
}