Skip to content
Snippets Groups Projects

Layout fixes to get kiosk mode to display correctly

3 files
+ 22
24
Compare changes
  • Side-by-side
  • Inline

Files

+ 2
6
@@ -19,13 +19,10 @@ SIX_AM_MINUTES = 360 # start time of calendar
@@ -19,13 +19,10 @@ SIX_AM_MINUTES = 360 # start time of calendar
EIGHT_PM_MINUTES = 1200 # end time of calendar
EIGHT_PM_MINUTES = 1200 # end time of calendar
%>
%>
<div id="pagetitle">
<h3 class="dcf-txt-h4"><%= reservation.nil? ? 'Reserve Time for ' : 'Edit Reservation for ' %><%= resource.name %></h3>
<h3 class="dcf-txt-h5"><%= reservation.nil? ? 'Reserve Time for ' : 'Edit Reservation for ' %><%= resource.name %></h3>
</div>
<div class="dcf-clear-both">
<form action="" method="POST">
<form action="" method="POST">
<section class="dcf-grid dcf-col-gap-vw">
<section class="dcf-grid dcf-col-gap-vw dcf-row-gap-4">
<div class="dcf-col-100% dcf-col-67%-start@sm">
<div class="dcf-col-100% dcf-col-67%-start@sm">
<label>Schedule for <span id="current-date"><%= day.strftime('%m/%d/%Y') %></span></label>
<label>Schedule for <span id="current-date"><%= day.strftime('%m/%d/%Y') %></span></label>
<div class="calendar-container individual-day">
<div class="calendar-container individual-day">
@@ -213,7 +210,6 @@ EIGHT_PM_MINUTES = 1200 # end time of calendar
@@ -213,7 +210,6 @@ EIGHT_PM_MINUTES = 1200 # end time of calendar
</div>
</div>
</section>
</section>
</form>
</form>
</div>
<% append_script_declaration(%q[var ordinal = function(number) {
<% append_script_declaration(%q[var ordinal = function(number) {
var mod = number % 100;
var mod = number % 100;
Loading