Merge branch 'master' into michael/rm-start-restriction
This commit is contained in:
commit
8d5c300639
109 changed files with 907 additions and 512 deletions
BIN
app/assets/images/snapcon_logo.png
Normal file
BIN
app/assets/images/snapcon_logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 48 KiB |
|
|
@ -11,39 +11,6 @@ $(function () {
|
|||
format: 'YYYY-MM-DD HH:mm'
|
||||
});
|
||||
|
||||
$("#registration-arrival-datepicker").datetimepicker({
|
||||
useCurrent: false,
|
||||
stepping: 15,
|
||||
sideBySide: true,
|
||||
format: "YYYY-MM-DD HH:mm",
|
||||
// arrival_date <= end_date
|
||||
maxDate : $("#registration-arrival-datepicker").attr('end_date')
|
||||
});
|
||||
|
||||
$("#registration-departure-datepicker").datetimepicker({
|
||||
useCurrent: false,
|
||||
stepping: 15,
|
||||
sideBySide: true,
|
||||
format: "YYYY-MM-DD HH:mm",
|
||||
// departure_date > start_date
|
||||
minDate : $("#registration-arrival-datepicker").attr('start_date')
|
||||
});
|
||||
|
||||
$("#registration-arrival-datepicker").on("dp.change",function (e) {
|
||||
// departure_date > start_date,arrival_date
|
||||
if ((new Date(e.date).getTime()) > (new Date($("#registration-arrival-datepicker").attr('start_date')).getTime())){
|
||||
$('#registration-departure-datepicker').data("DateTimePicker").minDate(e.date);
|
||||
}
|
||||
else{
|
||||
$('#registration-departure-datepicker').data("DateTimePicker").minDate($("#registration-arrival-datepicker").attr('start_date'));
|
||||
}
|
||||
});
|
||||
|
||||
// departure_date >= arrival_date
|
||||
$("#registration-departure-datepicker").on("dp.change",function (e) {
|
||||
$('#registration-arrival-datepicker').data("DateTimePicker").maxDate(e.date);
|
||||
});
|
||||
|
||||
$("#conference-start-datepicker").datetimepicker({
|
||||
useCurrent: false,
|
||||
format: "YYYY-MM-DD"
|
||||
|
|
|
|||
|
|
@ -2,6 +2,13 @@
|
|||
*= require strap-on
|
||||
*= require formtastic-bootstrap
|
||||
*= require dataTables/bootstrap/3/jquery.dataTables.bootstrap
|
||||
*= require selectize
|
||||
*= require selectize.bootstrap3
|
||||
*= require bootstrap-select
|
||||
*= require bootstrap-markdown
|
||||
*= require bootstrap-datetimepicker
|
||||
*= require leaflet
|
||||
|
||||
*= require osem
|
||||
*= require osem-rating
|
||||
*= require osem-schedule
|
||||
|
|
@ -10,15 +17,9 @@
|
|||
*= require osem-splash
|
||||
*= require font-awesome
|
||||
*= require osem-fonts
|
||||
*= require bootstrap-markdown
|
||||
*= require bootstrap-datetimepicker
|
||||
*= require leaflet
|
||||
*= require bootstrap3-switch
|
||||
*= require osem-payments
|
||||
*= require osem-navbar
|
||||
*= require selectize
|
||||
*= require selectize.bootstrap3
|
||||
*= require mastodon
|
||||
*= require bootstrap-select
|
||||
*= require conferences
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
@import "breakpoints.scss";
|
||||
@import "osem-variables.scss";
|
||||
|
||||
.nav-osem {
|
||||
border: none;
|
||||
@include breakpoint(xs) {
|
||||
|
|
@ -29,7 +31,23 @@
|
|||
}
|
||||
}
|
||||
.dropdown-menu {
|
||||
padding: 17px;
|
||||
min-width: 225px;
|
||||
}
|
||||
|
||||
&.navbar-default {
|
||||
.navbar-nav > .open > a {
|
||||
&:hover, &:focus {
|
||||
color: $navbar-default-link-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-brand img {
|
||||
margin-top: -5px;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
.trapezoid {
|
||||
border-top-color: $navbar-default-bg;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -64,9 +64,8 @@
|
|||
|
||||
#schedule td.event {
|
||||
background-image: linear-gradient(to top, rgb(247,250,242) 24%, rgb(194,232,190) 97%, rgb(194,232,190) 100%);
|
||||
|
||||
cursor: pointer;
|
||||
padding: 3px 2px;
|
||||
cursor: pointer;
|
||||
padding: 3px 2px;
|
||||
}
|
||||
|
||||
#schedule td.event:hover
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
@import "breakpoints.scss";
|
||||
@import "osem-variables.scss";
|
||||
|
||||
#splash {
|
||||
// Counter the general padding for #content
|
||||
|
|
@ -6,18 +7,30 @@
|
|||
section {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
|
||||
.trapezoid {
|
||||
top: 60px + $trapezoid-height;
|
||||
}
|
||||
}
|
||||
|
||||
section:nth-child(even) {
|
||||
background: none repeat scroll 0 0 #e0e0e0;
|
||||
color: #555;
|
||||
background: none repeat scroll 0 0 #eee;
|
||||
color: #333;
|
||||
|
||||
.trapezoid {
|
||||
border-top-color: #eee;
|
||||
}
|
||||
}
|
||||
section:nth-child(odd) {
|
||||
background: none repeat scroll 0 0 #ffffff;
|
||||
color: #7b7b7b;
|
||||
color: #333;
|
||||
.thumbnail {
|
||||
background: none repeat scroll 0 0 #e0e0e0;
|
||||
}
|
||||
|
||||
.trapezoid {
|
||||
border-top-color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.cta-button {
|
||||
|
|
@ -32,11 +45,15 @@
|
|||
padding-top: 100px;
|
||||
padding-bottom: 100px;
|
||||
.container {
|
||||
#header {
|
||||
#header-no-image {
|
||||
background-color: rgba(224, 224, 224,.80);
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
#header-image {
|
||||
color: #FFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -67,6 +84,10 @@
|
|||
#venue-pic {
|
||||
margin-top: 20px;
|
||||
}
|
||||
// The venue section has less padding.
|
||||
.trapezoid {
|
||||
top: $trapezoid-height;
|
||||
}
|
||||
}
|
||||
|
||||
#lodging {
|
||||
|
|
@ -93,6 +114,14 @@
|
|||
}
|
||||
}
|
||||
|
||||
#tickets {
|
||||
a {
|
||||
&:hover, &:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#sponsors {
|
||||
.img-sponsor {
|
||||
max-height: 100px;
|
||||
|
|
@ -116,14 +145,13 @@
|
|||
}
|
||||
|
||||
#social-media{
|
||||
background: none repeat scroll 0 0 #2f2f2f;
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
background: none repeat scroll 0 0 #0C3559;
|
||||
padding: 50px 20px;
|
||||
i{
|
||||
color: #4a4a4a;
|
||||
color: #FFF;
|
||||
}
|
||||
i:hover{
|
||||
color: #16a085;
|
||||
color: #F2E205;
|
||||
}
|
||||
a{
|
||||
padding-left: 100px;
|
||||
|
|
@ -164,11 +192,11 @@
|
|||
i.fa {
|
||||
line-height: inherit;
|
||||
}
|
||||
&.show {
|
||||
visibility:visible;
|
||||
cursor:pointer;
|
||||
opacity: 1.0;
|
||||
}
|
||||
// &.show {
|
||||
// visibility:visible;
|
||||
// cursor:pointer;
|
||||
// opacity: 1.0;
|
||||
// }
|
||||
a {
|
||||
color: white;
|
||||
}
|
||||
|
|
|
|||
14
app/assets/stylesheets/osem-variables.scss
Normal file
14
app/assets/stylesheets/osem-variables.scss
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// This file is included *early* in CSS order!
|
||||
// These variables change bootstrap defaults.
|
||||
|
||||
$navbar-default-bg: #0C3559;
|
||||
$navbar-default-link-active-bg: rgb(8,8,8);
|
||||
$navbar-default-border: 1px solid #d4d4d4;
|
||||
$navbar-default-color: #FFF;
|
||||
$navbar-default-link-color: #FFF;
|
||||
$navbar-default-link-hover-color: #F2E205;
|
||||
$navbar-default-link-active-hover-color: #FFF;
|
||||
|
||||
|
||||
// The hiegh of the section tabs that are like Snap! blocks.
|
||||
$trapezoid-height: 14px;
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
@import "osem-variables";
|
||||
@import "bootstrap/mixins";
|
||||
|
||||
html {
|
||||
|
|
@ -7,15 +8,31 @@ html {
|
|||
|
||||
body {
|
||||
/* Margin bottom by 2 times the footer height */
|
||||
margin-bottom: 60px;
|
||||
margin-bottom: 85px;
|
||||
/* Margin bottom by navbar height */
|
||||
padding-top: 60px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#content {
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
// Designed to be the last element in a section / nav
|
||||
// Makes a little "puzzle piece" connector.
|
||||
.trapezoid {
|
||||
position: relative;
|
||||
margin-left: 60px;
|
||||
border-top: $trapezoid-height solid;
|
||||
border-left: 9px solid transparent;
|
||||
border-right: 9px solid transparent;
|
||||
height: 0;
|
||||
width: 64px;
|
||||
margin-top: -1 * $trapezoid-height;
|
||||
top: $trapezoid-height;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
#footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
|
|
|
|||
|
|
@ -1,10 +1,5 @@
|
|||
$navbar-default-bg: #299a0b;
|
||||
$navbar-default-link-active-bg: #DFE0DF;
|
||||
$navbar-default-border: 1px solid #d4d4d4;
|
||||
$navbar-default-color: #ffffff;
|
||||
$navbar-default-link-color: #ffffff;
|
||||
$navbar-default-link-hover-color: #000000;
|
||||
|
||||
// Place bootstrap variable customizations in the file below.
|
||||
@import "osem-variables";
|
||||
@import 'bootstrap-datetimepicker';
|
||||
@import "bootstrap-sprockets";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue