oupala / apaxy

a simple, customisable theme for your apache directory listing
https://oupala.github.io/apaxy/
GNU General Public License v3.0
1.86k stars 256 forks source link

Use protocol agnostic path for font import. #13

Closed kiwiz closed 10 years ago

kiwiz commented 10 years ago

I'm serving this over https and I get a mixed content error due to the following import statement:

@import url('http://fonts.googleapis.com/css?family=Open+Sans');

Changing this to

@import url('//fonts.googleapis.com/css?family=Open+Sans');

should work for both HTTPS and HTTP as the google servers serve up the correct css. :cat:

AdamWhitcroft commented 10 years ago

Done, thanks.