From 4a98c921a87fbf95962afbc5367ed209ce672cb4 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 23 Oct 2014 12:00:37 -0400 Subject: [PATCH 1/2] Load Google fonts over SSL --- website/source/assets/stylesheets/application.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/application.scss b/website/source/assets/stylesheets/application.scss index 635f780d7..9d02b2e74 100755 --- a/website/source/assets/stylesheets/application.scss +++ b/website/source/assets/stylesheets/application.scss @@ -1,7 +1,7 @@ @import 'bootstrap-sprockets'; @import 'bootstrap'; -@import url("http://fonts.googleapis.com/css?family=Lato:300,400,700"); +@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700"); // Core variables and mixins @import '_variables'; From 66c0558f8d55923d814439a03bdb08f299713642 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 23 Oct 2014 12:30:04 -0400 Subject: [PATCH 2/2] Use non-protocol-specific URL for fonts --- website/source/assets/stylesheets/application.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/application.scss b/website/source/assets/stylesheets/application.scss index 9d02b2e74..95ae64b73 100755 --- a/website/source/assets/stylesheets/application.scss +++ b/website/source/assets/stylesheets/application.scss @@ -1,7 +1,7 @@ @import 'bootstrap-sprockets'; @import 'bootstrap'; -@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700"); +@import url("//fonts.googleapis.com/css?family=Lato:300,400,700"); // Core variables and mixins @import '_variables';