From e51e74b4245f8ab8833b81d005b6d34a96133bd5 Mon Sep 17 00:00:00 2001 From: Adam Zapletal Date: Sat, 28 Dec 2024 12:54:18 -0600 Subject: [PATCH] Used local `fontawesome-webfont.woff` file For the last ten years (since 7abaceb1), the site has fetched its Font Awesome font asset from a remote CDN. It seems to me that since 7d21f20a, we would rather host our static assets ourselves. This patch makes that change for the current version of Font Awesome. --- djangoproject/scss/font-awesome/_variables.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/djangoproject/scss/font-awesome/_variables.scss b/djangoproject/scss/font-awesome/_variables.scss index 7458f0d0c..2009e2fb6 100644 --- a/djangoproject/scss/font-awesome/_variables.scss +++ b/djangoproject/scss/font-awesome/_variables.scss @@ -1,8 +1,7 @@ // Variables // -------------------------- -// $fa-font-path: "../fonts/font-awesome" !default; -$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts" !default; // for referencing Bootstrap CDN font files directly +$fa-font-path: "../fonts" !default; $fa-css-prefix: icon !default; $fa-version: "4.2.0" !default; $fa-border-color: #eee !default;