diff --git a/css/partials/_footer.scss b/css/partials/_footer.scss index cd8d3e1d..ad45f85a 100644 --- a/css/partials/_footer.scss +++ b/css/partials/_footer.scss @@ -1,9 +1,6 @@ .footer-main { - background: lighten($color-primary, 7.8431%); + background: $color-primary; flex-wrap: wrap; - @include bp-large { - background: $color-primary; - } @include bp-tablet--portrait { padding: 2em 1.375em; } @@ -63,7 +60,7 @@ padding: 0; z-index: map-get($zindex, main-secondary); } - @include bp-tablet--portrait-only { // Prevent these links from overflowing into Social icons + @include bp-tablet--landscape-below { // Prevent these links from overflowing into Social icons @include rem-first(margin-top, 1.5); @include rem-first(margin-left, 0); } @@ -86,7 +83,7 @@ } } span:first-of-type { - @include bp-tablet--portrait-only { + @include bp-tablet--landscape-below { padding-left: 0; // So that primary links are flush with left edge } } diff --git a/functions.php b/functions.php index 73931f3e..05c67548 100644 --- a/functions.php +++ b/functions.php @@ -107,7 +107,7 @@ function twentytwelve_scripts_styles() { */ wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri() ); - wp_register_style('libraries-global', get_template_directory_uri() . '/css/build/minified/global.css', array('twentytwelve-style'), '2.0.2'); + wp_register_style('libraries-global', get_template_directory_uri() . '/css/build/minified/global.css', array('twentytwelve-style'), '2.2.0'); wp_enqueue_style('libraries-global'); @@ -129,9 +129,9 @@ function twentytwelve_scripts_styles() { wp_register_script('modernizr', get_template_directory_uri() . '/js/modernizr.js', array(), '2.8.1', false); - wp_register_script('homeJS', get_template_directory_uri() . '/js/build/home.min.js', array('jquery', 'modernizr'), '20140709', true); + wp_register_script('homeJS', get_template_directory_uri() . '/js/build/home.min.js', array('jquery', 'modernizr'), '2.2.0', true); - wp_register_script('productionJS', get_template_directory_uri() . '/js/build/production.min.js', array('jquery'), '201400616', true); + wp_register_script('productionJS', get_template_directory_uri() . '/js/build/production.min.js', array('jquery'), '2.2.0', true); wp_register_script('hoursJS', get_template_directory_uri() . '/js/build/hours.min.js', array('jquery', 'productionJS'), '20140312', true);