Modify CSS so that book_success.php is responsive.

This commit is contained in:
Alex Tselegidis 2015-04-26 14:31:34 +02:00
parent f822779a95
commit 56f02ae40b
2 changed files with 104 additions and 56 deletions

View file

@ -1,12 +1,16 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title><?php echo $this->lang->line('appointment_registered') . ' - ' . $company_name; ?></title> <meta charset="utf-8" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#35A768"> <meta name="theme-color" content="#35A768">
<title><?php echo $this->lang->line('appointment_registered') . ' - ' . $company_name; ?></title>
<?php // INCLUDE JS FILES ?> <?php
// ------------------------------------------------------------
// INCLUDE JS FILES
// ------------------------------------------------------------ ?>
<script <script
type="text/javascript" type="text/javascript"
src="<?php echo $this->config->base_url(); ?>/assets/js/libs/jquery/jquery.min.js"></script> src="<?php echo $this->config->base_url(); ?>/assets/js/libs/jquery/jquery.min.js"></script>
@ -17,37 +21,38 @@
type="text/javascript" type="text/javascript"
src="<?php echo $this->config->base_url(); ?>/assets/js/libs/date.js"></script> src="<?php echo $this->config->base_url(); ?>/assets/js/libs/date.js"></script>
<?php // INCLUDE CSS FILES ?> <script
type="text/javascript"
src="<?php echo $this->config->base_url(); ?>/assets/js/general_functions.js"></script>
<script
type="text/javascript"
src="https://apis.google.com/js/client.js"></script>
<?php
// ------------------------------------------------------------
// INCLUDE CSS FILES
// ------------------------------------------------------------ ?>
<link rel="stylesheet" type="text/css" <link rel="stylesheet" type="text/css"
href="<?php echo $this->config->base_url(); ?>/assets/ext/bootstrap/css/bootstrap.min.css"> href="<?php echo $this->config->base_url(); ?>/assets/ext/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css"
href="<?php echo $this->config->base_url(); ?>/assets/css/frontend.css">
<?php // SET FAVICON FOR PAGE ?>
<?php
// ------------------------------------------------------------
// SET PAGE FAVICON
// ------------------------------------------------------------ ?>
<link rel="icon" type="image/x-icon" <link rel="icon" type="image/x-icon"
href="<?php echo $this->config->base_url(); ?>/assets/img/favicon.ico"> href="<?php echo $this->config->base_url(); ?>/assets/img/favicon.ico">
<link rel="icon" sizes="192x192" <link rel="icon" sizes="192x192"
href="<?php echo $this->config->base_url(); ?>/assets/img/logo.png"> href="<?php echo $this->config->base_url(); ?>/assets/img/logo.png">
<style> <?php
body { // ------------------------------------------------------------
background-color: #CAEDF3; // CUSTOM PAGE JS
} // ------------------------------------------------------------ ?>
#success-frame {
width: 630px;
margin: 150px auto 0 auto;
background: #FFF;
border: 1px solid #DDDADA;
padding: 70px;
}
#success-icon {
float: right;
margin-top: 17px;
}
</style>
<script src="https://apis.google.com/js/client.js"></script>
<script type="text/javascript"> <script type="text/javascript">
var GlobalVariables = { var GlobalVariables = {
'appointmentData' : <?php echo json_encode($appointment_data); ?>, 'appointmentData' : <?php echo json_encode($appointment_data); ?>,
@ -176,23 +181,33 @@
</script> </script>
</head> </head>
<body> <body>
<div id="success-frame" class="frame-container"> <div id="main" class="container">
<img id="success-icon" src="<?php echo $this->config->base_url(); ?>/assets/img/success.png" /> <div class="wrapper row">
<div id="success-frame" class="frame-container
col-xs-12
col-sm-offset-1 col-sm-10
col-md-offset-2 col-md-8
col-lg-offset-2 col-lg-8">
<h3><?php echo $this->lang->line('appointment_registered'); ?></h3> <div class="col-xs-12 col-sm-2">
<p><?php echo $this->lang->line('appointment_details_was_sent_to_you'); ?></p> <img id="success-icon" class="pull-right" src="<?php echo $this->config->base_url(); ?>/assets/img/success.png" />
</div>
<div class="col-xs-12 col-sm-10">
<?php
echo '<h3>' . $this->lang->line('appointment_registered') . '</h3>';
echo '<p>' . $this->lang->line('appointment_details_was_sent_to_you') . '</p>';
<?php if ($this->config->item('ea_google_sync_feature')) { ?> if ($this->config->item('ea_google_sync_feature')) {
echo '
<button id="add-to-google-calendar" class="btn btn-primary"> <button id="add-to-google-calendar" class="btn btn-primary">
<i class="icon-plus icon-white"></i> <i class="icon-plus icon-white"></i>
<?php echo $this->lang->line('add_to_google_calendar'); ?> ' . $this->lang->line('add_to_google_calendar') . '
</button> </button>';
<?php } ?> }
<?php
// Display exceptions (if any). // Display exceptions (if any).
if (isset($exceptions)) { if (isset($exceptions)) {
echo '<div style="margin: 10px">'; echo '<div style="margin:10px">';
echo '<h4>Unexpected Errors</h4>'; echo '<h4>Unexpected Errors</h4>';
foreach($exceptions as $exc) { foreach($exceptions as $exc) {
echo exceptionToHtml($exc); echo exceptionToHtml($exc);
@ -201,8 +216,8 @@
} }
?> ?>
</div> </div>
<script </div>
type="text/javascript" </div>
src="<?php echo $this->config->base_url(); ?>/assets/js/general_functions.js"></script> </div>
</body> </body>
</html> </html>

View file

@ -195,6 +195,18 @@ body {
padding-left: 0px; padding-left: 0px;
} }
/* BOOK SUCCESS
------------------------------------------------------------------------- */
#success-frame {
background: #FFF;
border: 1px solid #DDDADA;
padding: 70px;
}
#success-frame #success-icon {
margin-top: 20px;
}
/* CANCEL APPOINTMENT /* CANCEL APPOINTMENT
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
@ -215,20 +227,24 @@ body {
display: inline; display: inline;
} }
/* Mobile Devices /* MOBILE DEVICES
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
@media(max-width:400px) { @media(max-width:768px) {
/**
* BOOKING WIZARD
*/
html, html,
body { body {
height: auto; min-height: 100%;
} }
#main { #main {
min-height: 100%;
display: block; /* reset display */ display: block; /* reset display */
} }
#main .wrapper { #main .wrapper {
height: auto; min-height: 100%;
display: block; /* reset display */ display: block; /* reset display */
} }
@ -306,4 +322,21 @@ body {
.popover .popover-content #language-list .language { .popover .popover-content #language-list .language {
margin: 10px 0; margin: 10px 0;
} }
/**
* BOOK SUCCESS
*/
#success-frame {
text-align: center;
height: 100%;
border: none;
padding: 35px;
}
#success-frame #success-icon {
width: 64px;
display: block;
margin: auto;
float: none !important;
}
} }