Fixed companions heading, time_select bug, and emails on comments

This commit is contained in:
Godwin
2016-08-16 17:57:04 -07:00
parent e56aaf5bf7
commit 22375e73e0
10 changed files with 44 additions and 20 deletions
+11 -2
View File
@@ -1,5 +1,14 @@
(function() {
var body = document.querySelector('body');
function initSchedule() {
forEachElement('table.schedule td.workshop.empty', function(block) {
block.addEventListener('click', function(event) {
console.log('clicked');
});
});
}
initSchedule();
/*var body = document.querySelector('body');
var primaryContent = document.getElementById('primary-content');
var eventDlg = document.getElementById('event-dlg');
@@ -26,5 +35,5 @@
eventDlg.querySelector('.close-btn').onclick = closeDlg;
document.getElementById('overlay').onclick = closeDlg;
});
});
});*/
})();
+15 -6
View File
@@ -1913,27 +1913,27 @@ table.schedule {
width: 100%;
margin: 0 0 1em;
&.locations-1 td.workshop {
&.locations-1 td.workshop.filled {
width: 100%;
}
&.locations-2 td.workshop {
&.locations-2 td.workshop.filled {
width: 50%;
}
&.locations-3 td.workshop {
&.locations-3 td.workshop.filled {
width: 33.333%;
}
&.locations-4 td.workshop {
&.locations-4 td.workshop.filled {
width: 25%;
}
&.locations-5 td.workshop {
&.locations-5 td.workshop.filled {
width: 20%;
}
&.locations-6 td.workshop {
&.locations-6 td.workshop.filled {
width: 16.66667%;
}
@@ -1953,6 +1953,15 @@ table.schedule {
&.filled {
background-color: lighten($colour-1, 25%);
}
&.open {
cursor: pointer;
white-space: nowrap;
&:hover {
background-color: lighten($colour-1, 25%);
}
}
}
&.event {