diff --git a/CHANGELOG.md b/CHANGELOG.md index d10fb713e..12e47cce8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 5.5.19 +## 05/23/2024 +1. [Common](#common) + 1. [](#bugfix) + - Fix Joomla 5.1 "Invalid extension update" bug + - FontAwesome 6 Fix (#3253) # 5.5.18 ## 05/22/2024 1. [Common](#common) diff --git a/engines/common/nucleus/blueprints/page/fontawesome.yaml b/engines/common/nucleus/blueprints/page/fontawesome.yaml index ca4517935..1ee34f85a 100644 --- a/engines/common/nucleus/blueprints/page/fontawesome.yaml +++ b/engines/common/nucleus/blueprints/page/fontawesome.yaml @@ -23,8 +23,8 @@ form: default: fa4 options: fa4: Font Awesome 4 (legacy) - fa5css: Font Awesome 5 Free (Webfont / CSS) - fa5js: Font Awesome 5 Free (SVG / JS) + fa5css: Font Awesome 6 Free (Webfont / CSS) + fa5js: Font Awesome 6 Free (SVG / JS) fa4_compatibility: type: enable.enable diff --git a/engines/common/nucleus/css-compiled/nucleus.css b/engines/common/nucleus/css-compiled/nucleus.css index fbe0cc47e..dd9baa1b9 100644 --- a/engines/common/nucleus/css-compiled/nucleus.css +++ b/engines/common/nucleus/css-compiled/nucleus.css @@ -333,7 +333,7 @@ th { text-align: left; } .g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator { display: inline-block; vertical-align: middle; line-height: normal; } -.g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after { display: inline-block; cursor: pointer; width: 1.5rem; opacity: 0.5; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; font-weight: 900; content: ""; text-align: right; } +.g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after { display: inline-block; cursor: pointer; width: 1.5rem; opacity: 0.5; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: ""; text-align: right; } .g-main-nav .g-toplevel > li.g-parent.g-selected > .g-menu-item-container > .g-menu-parent-indicator:after { content: ""; } @@ -407,7 +407,7 @@ th { text-align: left; } .g-go-back a span { display: none; } -.g-go-back a:before { display: block; text-align: center; width: 1.28571em; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; font-weight: 900; content: ""; opacity: 0.5; } +.g-go-back a:before { display: block; text-align: center; width: 1.28571em; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: ""; opacity: 0.5; } .g-menu-item-container > i { vertical-align: middle; margin-right: 0.2rem; } @@ -427,7 +427,7 @@ th { text-align: left; } #g-mobilemenu-container .g-toplevel li.g-parent .g-menu-parent-indicator { position: absolute; right: 0.938rem; text-align: center; } -#g-mobilemenu-container .g-toplevel li.g-parent .g-menu-parent-indicator:after { display: inline-block; text-align: center; opacity: 0.5; width: 1.5rem; line-height: normal; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; font-weight: 900; content: ""; } +#g-mobilemenu-container .g-toplevel li.g-parent .g-menu-parent-indicator:after { display: inline-block; text-align: center; opacity: 0.5; width: 1.5rem; line-height: normal; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: ""; } #g-mobilemenu-container .g-toplevel .g-dropdown { top: 0; background: transparent; position: absolute; left: 0; right: 0; z-index: 1; transition: transform .2s ease-out; transform: translateX(100%); } diff --git a/engines/common/nucleus/scss/nucleus/_nav.scss b/engines/common/nucleus/scss/nucleus/_nav.scss index b41c9f160..3eb63f832 100644 --- a/engines/common/nucleus/scss/nucleus/_nav.scss +++ b/engines/common/nucleus/scss/nucleus/_nav.scss @@ -60,7 +60,7 @@ cursor: pointer; width: 1.5rem; opacity: 0.5; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: $fa-chevron-down; text-align: right; @@ -291,7 +291,7 @@ display: block; text-align: center; width: 1.28571em; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: $fa-chevron-left; opacity: 0.5; @@ -368,7 +368,7 @@ opacity: 0.5; width: 1.5rem; line-height: normal; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: $fa-chevron-right; } diff --git a/engines/grav/nucleus/scss/configuration/grav/_typography.scss b/engines/grav/nucleus/scss/configuration/grav/_typography.scss index b49d5d985..a26a56474 100644 --- a/engines/grav/nucleus/scss/configuration/grav/_typography.scss +++ b/engines/grav/nucleus/scss/configuration/grav/_typography.scss @@ -4,4 +4,4 @@ $font-family-header: "Montserrat", "Helvetica", "Tahoma", "Geneva", "Arial", $font-family-mono: "Inconsolata", monospace !default; $font-family-serif: "Georgia", "Times", "Times New Roman", serif !default; -$icons: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome !default; +$icons: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome !default; diff --git a/platforms/common/css-compiled/g-admin.css b/platforms/common/css-compiled/g-admin.css index 179d93b80..86d871200 100644 --- a/platforms/common/css-compiled/g-admin.css +++ b/platforms/common/css-compiled/g-admin.css @@ -343,7 +343,7 @@ #g5-container .g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator { display: inline-block; vertical-align: middle; line-height: normal; } -#g5-container .g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after { display: inline-block; cursor: pointer; width: 1.5rem; opacity: 0.5; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; font-weight: 900; content: ""; text-align: right; } +#g5-container .g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after { display: inline-block; cursor: pointer; width: 1.5rem; opacity: 0.5; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: ""; text-align: right; } #g5-container .g-main-nav .g-toplevel > li.g-parent.g-selected > .g-menu-item-container > .g-menu-parent-indicator:after { content: ""; } @@ -417,7 +417,7 @@ #g5-container .g-go-back a span { display: none; } -#g5-container .g-go-back a:before { display: block; text-align: center; width: 1.28571em; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; font-weight: 900; content: ""; opacity: 0.5; } +#g5-container .g-go-back a:before { display: block; text-align: center; width: 1.28571em; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: ""; opacity: 0.5; } #g5-container .g-menu-item-container > i { vertical-align: middle; margin-right: 0.2rem; } @@ -437,7 +437,7 @@ #g5-container #g-mobilemenu-container .g-toplevel li.g-parent .g-menu-parent-indicator { position: absolute; right: 0.938rem; text-align: center; } -#g5-container #g-mobilemenu-container .g-toplevel li.g-parent .g-menu-parent-indicator:after { display: inline-block; text-align: center; opacity: 0.5; width: 1.5rem; line-height: normal; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; font-weight: 900; content: ""; } +#g5-container #g-mobilemenu-container .g-toplevel li.g-parent .g-menu-parent-indicator:after { display: inline-block; text-align: center; opacity: 0.5; width: 1.5rem; line-height: normal; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: ""; } #g5-container #g-mobilemenu-container .g-toplevel .g-dropdown { top: 0; background: transparent; position: absolute; left: 0; right: 0; z-index: 1; transition: transform .2s ease-out; transform: translateX(100%); } @@ -899,9 +899,9 @@ i.fa-grav, i.fa-grav-spaceman, i.fa-grav-text, i.fa-grav-full, i.fa-grav-logo, i .g-selectize-control.g-single .g-selectize-input.g-input-active, .g-selectize-control.g-single .g-selectize-input.g-input-active input { cursor: text; } -.g-selectize-control.g-single .g-selectize-input:after { content: ""; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; font-weight: 900; display: block; position: absolute; top: 50%; right: 23px; margin-top: -8px; width: 0; height: 0; color: #808080; font-size: 0.8em; } +.g-selectize-control.g-single .g-selectize-input:after { content: ""; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; display: block; position: absolute; top: 50%; right: 23px; margin-top: -8px; width: 0; height: 0; color: #808080; font-size: 0.8em; } -.g-selectize-control.g-single .g-selectize-input.g-dropdown-active:after { content: ""; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; font-weight: 900; } +.g-selectize-control.g-single .g-selectize-input.g-dropdown-active:after { content: ""; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; } .g-selectize-control .g-selectize-input.g-disabled { opacity: 0.5; background-color: #fafafa; } @@ -1323,7 +1323,7 @@ i.fa-grav, i.fa-grav-spaceman, i.fa-grav-text, i.fa-grav-full, i.fa-grav-logo, i #g5-container #navbar ul ul li a, #g5-container .g5-dialog > .g-tabs ul ul li a, #g5-container .g5-popover-content > .g-tabs ul ul li a, #g5-container .g5-dialog form > .g-tabs ul ul li a, #g5-container .g5-popover-content form > .g-tabs ul ul li a, #g5-container .g5-dialog .g5-content > .g-tabs ul ul li a, #g5-container .g5-popover-content .g5-content > .g-tabs ul ul li a { color: #999; padding-top: 0.2345rem; padding-bottom: 0.2345rem; padding-left: 42px; } -#g5-container #navbar ul ul li a:before, #g5-container .g5-dialog > .g-tabs ul ul li a:before, #g5-container .g5-popover-content > .g-tabs ul ul li a:before, #g5-container .g5-dialog form > .g-tabs ul ul li a:before, #g5-container .g5-popover-content form > .g-tabs ul ul li a:before, #g5-container .g5-dialog .g5-content > .g-tabs ul ul li a:before, #g5-container .g5-popover-content .g5-content > .g-tabs ul ul li a:before { content: ""; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; font-weight: 900; font-size: 100%; vertical-align: middle; display: inline-block; font-weight: normal; padding-right: 5px; color: #ddd; } +#g5-container #navbar ul ul li a:before, #g5-container .g5-dialog > .g-tabs ul ul li a:before, #g5-container .g5-popover-content > .g-tabs ul ul li a:before, #g5-container .g5-dialog form > .g-tabs ul ul li a:before, #g5-container .g5-popover-content form > .g-tabs ul ul li a:before, #g5-container .g5-dialog .g5-content > .g-tabs ul ul li a:before, #g5-container .g5-popover-content .g5-content > .g-tabs ul ul li a:before { content: ""; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; font-size: 100%; vertical-align: middle; display: inline-block; font-weight: normal; padding-right: 5px; color: #ddd; } #g5-container .g-block.navbar-icons { flex: 0 3%; } @@ -1541,9 +1541,9 @@ i.fa-grav, i.fa-grav-spaceman, i.fa-grav-text, i.fa-grav-full, i.fa-grav-logo, i #g5-container .lm-blocks .section .g-grid:not(:empty):not(.no-hover):before, #g5-container .lm-blocks .section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after, #g5-container .lm-blocks .atoms-section .g-grid:not(:empty):not(.no-hover):before, #g5-container .lm-blocks .atoms-section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after, #g5-container .lm-blocks .offcanvas-section .g-grid:not(:empty):not(.no-hover):before, #g5-container .lm-blocks .offcanvas-section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after { display: block; position: absolute; background: #f6f6f6; top: -1px; bottom: -1px; width: 25px; vertical-align: middle; line-height: 58px; text-align: center; z-index: 5; color: #aaa; border: 1px solid #ddd; opacity: 0; } -#g5-container .lm-blocks .section .g-grid:not(:empty):not(.no-hover):before, #g5-container .lm-blocks .atoms-section .g-grid:not(:empty):not(.no-hover):before, #g5-container .lm-blocks .offcanvas-section .g-grid:not(:empty):not(.no-hover):before { font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; font-weight: 900; content: ""; border-radius: 3px 0 0 3px; left: -21px; cursor: move; border-right: 0 !important; } +#g5-container .lm-blocks .section .g-grid:not(:empty):not(.no-hover):before, #g5-container .lm-blocks .atoms-section .g-grid:not(:empty):not(.no-hover):before, #g5-container .lm-blocks .offcanvas-section .g-grid:not(:empty):not(.no-hover):before { font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; content: ""; border-radius: 3px 0 0 3px; left: -21px; cursor: move; border-right: 0 !important; } -#g5-container .lm-blocks .section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after, #g5-container .lm-blocks .atoms-section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after, #g5-container .lm-blocks .offcanvas-section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after { font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; font-weight: 900; content: ""; border-radius: 0 3px 3px 0; right: -21px; border-left: 0 !important; cursor: pointer; } +#g5-container .lm-blocks .section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after, #g5-container .lm-blocks .atoms-section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after, #g5-container .lm-blocks .offcanvas-section .g-grid:not(:empty):not(.no-hover):not(.no-gear):after { font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; content: ""; border-radius: 0 3px 3px 0; right: -21px; border-left: 0 !important; cursor: pointer; } #g5-container .lm-blocks .section .g-grid:hover:not(:empty), #g5-container .lm-blocks .atoms-section .g-grid:hover:not(:empty), #g5-container .lm-blocks .offcanvas-section .g-grid:hover:not(:empty) { box-shadow: 0 0 0 1px #ddd; } @@ -1859,7 +1859,7 @@ i.fa-grav, i.fa-grav-spaceman, i.fa-grav-text, i.fa-grav-full, i.fa-grav-logo, i #g5-container #page-settings #atoms.atoms-override .atoms-list { margin: 0.5rem 2rem 0.5rem 0.5rem; } -#g5-container #menu-editor .parent-indicator:before { font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; font-weight: 900; vertical-align: middle; display: inline-block; } +#g5-container #menu-editor .parent-indicator:before { font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; vertical-align: middle; display: inline-block; } #g5-container #menu-editor .config-cog { opacity: 0; position: absolute; transition: opacity 0.2s; } @@ -1939,7 +1939,7 @@ i.fa-grav, i.fa-grav-spaceman, i.fa-grav-text, i.fa-grav-full, i.fa-grav-logo, i #g5-container .submenu-selector .g-block { position: relative; padding-bottom: 60px; background: #DADADA; } -#g5-container .submenu-selector .g-block .submenu-reorder { position: absolute; background: #DADADA; bottom: 40px; width: 50px; vertical-align: middle; line-height: 22px; text-align: center; z-index: 5; color: #111; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; font-weight: 900; border-radius: 0 0 0.1875rem 0.1875rem; left: 50%; margin-left: -25px; cursor: ew-resize; opacity: 0; } +#g5-container .submenu-selector .g-block .submenu-reorder { position: absolute; background: #DADADA; bottom: 40px; width: 50px; vertical-align: middle; line-height: 22px; text-align: center; z-index: 5; color: #111; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; border-radius: 0 0 0.1875rem 0.1875rem; left: 50%; margin-left: -25px; cursor: ew-resize; opacity: 0; } @media only all and (max-width: 59.99rem) { #g5-container .submenu-selector .g-block .submenu-reorder { opacity: 1; } } @@ -1993,7 +1993,7 @@ i.fa-grav, i.fa-grav-spaceman, i.fa-grav-text, i.fa-grav-full, i.fa-grav-logo, i #g5-container .submenu-selector .submenu-items:empty:before { content: "Drop menu items here"; position: absolute; top: 50%; margin-top: -40px; line-height: 1rem; text-align: center; color: #aaa; width: 100%; } -#g5-container .submenu-selector .submenu-items:empty:after { content: ""; font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; font-weight: 900; font-size: 1.5rem; position: absolute; top: 0; right: 6px; opacity: 0.5; width: 36px; height: 36px; transition: opacity 0.2s ease-in-out; margin: 0 !important; text-align: center; cursor: pointer; } +#g5-container .submenu-selector .submenu-items:empty:after { content: ""; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; font-size: 1.5rem; position: absolute; top: 0; right: 6px; opacity: 0.5; width: 36px; height: 36px; transition: opacity 0.2s ease-in-out; margin: 0 !important; text-align: center; cursor: pointer; } #g5-container .submenu-selector .submenu-items:empty:hover:after { opacity: 1; } diff --git a/platforms/common/scss/admin/_layout-manager.scss b/platforms/common/scss/admin/_layout-manager.scss index db544d155..f05fa0ae4 100644 --- a/platforms/common/scss/admin/_layout-manager.scss +++ b/platforms/common/scss/admin/_layout-manager.scss @@ -232,7 +232,7 @@ $atom: #9055AF; } &:not(:empty):not(.no-hover):before { - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; content: $fa-bars; border-radius: 3px 0 0 3px; @@ -242,7 +242,7 @@ $atom: #9055AF; } &:not(:empty):not(.no-hover):not(.no-gear):after { - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; content: $fa-columns; border-radius: 0 3px 3px 0; diff --git a/platforms/common/scss/admin/_menu.scss b/platforms/common/scss/admin/_menu.scss index 941874a45..8387f1bb9 100644 --- a/platforms/common/scss/admin/_menu.scss +++ b/platforms/common/scss/admin/_menu.scss @@ -6,7 +6,7 @@ $submenu-ratio: 60px; #menu-editor { .parent-indicator { &:before { - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; vertical-align: middle; display: inline-block; @@ -248,7 +248,7 @@ $submenu-ratio: 60px; text-align: center; z-index: 5; color: $core-text; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; border-radius: 0 0 $core-border-radius $core-border-radius; left: 50%; @@ -404,7 +404,7 @@ $submenu-ratio: 60px; &:after { content: $fa-times-circle; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; font-size: 1.5rem; position: absolute; diff --git a/platforms/common/scss/admin/_navbar.scss b/platforms/common/scss/admin/_navbar.scss index 7d1411c26..2e387bede 100644 --- a/platforms/common/scss/admin/_navbar.scss +++ b/platforms/common/scss/admin/_navbar.scss @@ -122,7 +122,7 @@ &:before { content: $fa-chevron-right; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; font-size: 100%; vertical-align: middle; diff --git a/platforms/common/scss/admin/_selectize.scss b/platforms/common/scss/admin/_selectize.scss index d02987f44..cef5859de 100644 --- a/platforms/common/scss/admin/_selectize.scss +++ b/platforms/common/scss/admin/_selectize.scss @@ -240,7 +240,7 @@ $selectize-caret-margin-rtl: 0 4px 0 -2px; &:after { content: $fa-chevron-down; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; display: block; position: absolute; @@ -255,7 +255,7 @@ $selectize-caret-margin-rtl: 0 4px 0 -2px; &.g-dropdown-active:after { content: $fa-chevron-up; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; } } diff --git a/platforms/joomla/updates/pkg_gantry5.xml b/platforms/joomla/updates/pkg_gantry5.xml index 4833abfe6..5619db4fc 100644 --- a/platforms/joomla/updates/pkg_gantry5.xml +++ b/platforms/joomla/updates/pkg_gantry5.xml @@ -18,7 +18,7 @@ RocketTheme, LLC http://gantry.org
Updates
- + 5.6.20 diff --git a/platforms/joomla/updates/tpl_g5_helium.xml b/platforms/joomla/updates/tpl_g5_helium.xml index c546b7e2e..cb4333e9e 100644 --- a/platforms/joomla/updates/tpl_g5_helium.xml +++ b/platforms/joomla/updates/tpl_g5_helium.xml @@ -18,7 +18,7 @@ RocketTheme, LLC http://gantry.org
Updates
- + 5.6.20 diff --git a/platforms/joomla/updates/tpl_g5_hydrogen.xml b/platforms/joomla/updates/tpl_g5_hydrogen.xml index c92b3180f..bad79a5d9 100644 --- a/platforms/joomla/updates/tpl_g5_hydrogen.xml +++ b/platforms/joomla/updates/tpl_g5_hydrogen.xml @@ -18,7 +18,7 @@ RocketTheme, LLC http://gantry.org
Updates
- + 5.6.20 diff --git a/themes/helium/common/scss/helium/styles/_buttons.scss b/themes/helium/common/scss/helium/styles/_buttons.scss index 0a989d5d9..58012ed16 100644 --- a/themes/helium/common/scss/helium/styles/_buttons.scss +++ b/themes/helium/common/scss/helium/styles/_buttons.scss @@ -41,7 +41,7 @@ &[class*="fa-"] { &:before, &:after { - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; } } diff --git a/themes/helium/joomla/scss/helium-joomla/styles/_modules.scss b/themes/helium/joomla/scss/helium-joomla/styles/_modules.scss index 3f7e975e1..e10f0f109 100644 --- a/themes/helium/joomla/scss/helium-joomla/styles/_modules.scss +++ b/themes/helium/joomla/scss/helium-joomla/styles/_modules.scss @@ -85,7 +85,7 @@ &:before { text-align: center; - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; content: $fa-chevron-right; position: absolute; diff --git a/themes/helium/wordpress/scss/helium-wordpress/_widgets.scss b/themes/helium/wordpress/scss/helium-wordpress/_widgets.scss index d906f904b..0a9614298 100644 --- a/themes/helium/wordpress/scss/helium-wordpress/_widgets.scss +++ b/themes/helium/wordpress/scss/helium-wordpress/_widgets.scss @@ -40,7 +40,7 @@ vertical-align: bottom; &:before { - font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome; + font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome; font-weight: 900; margin-right: 5px; content: $fa-tag;