Added paper_trail, also starting work on the scheduler
This commit is contained in:
parent
90b30db9e8
commit
f86232bedf
35 changed files with 523 additions and 32137 deletions
45
app/assets/stylesheets/schedule.css
Normal file
45
app/assets/stylesheets/schedule.css
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
.schedule-content {
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.unscheduled {
|
||||
float:left;
|
||||
border:1px solid #bbb;
|
||||
padding-left:10px;
|
||||
padding-right: 10px;
|
||||
margin-right:20px;
|
||||
margin-left:20px;
|
||||
width:149px;
|
||||
height:100%;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.schedule {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.schedule-track-column-header {
|
||||
position: absolute;
|
||||
width: 149px;
|
||||
}
|
||||
|
||||
.schedule-track-column {
|
||||
float:left;
|
||||
border-right:1px solid #bbb;
|
||||
width:149px;
|
||||
height:400px;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.schedule-event {
|
||||
position:absolute;
|
||||
cursor:move;
|
||||
width:141px;
|
||||
height:32px;
|
||||
background: #6af;
|
||||
color:#fff;
|
||||
padding:4px;
|
||||
font-weight:bold;
|
||||
z-index:1;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue