From faee137c667e3e4107abecf16169da9d512cc8eb Mon Sep 17 00:00:00 2001 From: yhira Date: Mon, 15 Jan 2024 17:39:46 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B9=E3=82=AD=E3=83=B3=E5=88=B6=E5=BE=A1?= =?UTF-8?q?=E3=81=A7Fontawesome5=E3=81=A8=E3=81=97=E3=81=9F=E9=9A=9B?= =?UTF-8?q?=E3=80=81=E6=9C=AC=E6=96=87=E8=A8=AD=E5=AE=9A=E3=81=AE=E3=82=A2?= =?UTF-8?q?=E3=82=A4=E3=82=B3=E3=83=B3=E3=81=8C=E8=A1=A8=E7=A4=BA=E3=81=95?= =?UTF-8?q?=E3=82=8C=E3=81=AA=E3=81=84=E4=B8=8D=E5=85=B7=E5=90=88=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/fontawesome5.css | 22 +++++++++++++++++++++- scss/fontawesome5.scss | 23 +++++++++++++++++++++-- 2 files changed, 42 insertions(+), 3 deletions(-) diff --git a/css/fontawesome5.css b/css/fontawesome5.css index db0a8f634..265acd668 100644 --- a/css/fontawesome5.css +++ b/css/fontawesome5.css @@ -38,6 +38,7 @@ .fab-window-close-o::before, .list-window-close-o li::before, .fa-picture-o:before, +.fa-share-square-o::before, .search-form div.sbtn::after { font-family: "Font Awesome 5 Free"; font-weight: 400; @@ -47,6 +48,10 @@ content: "\f03e"; } +.fa-share-square-o::before { + content: "\f14d"; +} + .is-style-comment-box::before, .comment-box::before { content: "\f075"; @@ -236,11 +241,26 @@ .search-form div.sbtn:before, .slick-prev.slick-arrow::before, .slick-next.slick-arrow::before, -.fa-exclamation-triangle::before { +.fa-exclamation-triangle::before, +.fa-external-link::before, +.fa-level-up::before, +.fa-sign-out::before { font-family: "Font Awesome 5 Free"; font-weight: 900; } +.fa-external-link::before { + content: "\f35d"; +} + +.fa-level-up::before { + content: "\f3bf"; +} + +.fa-sign-out::before { + content: "\f2f5"; +} + .is-style-memo-box::before, .memo-box::before, .fab-pencil::before { diff --git a/scss/fontawesome5.scss b/scss/fontawesome5.scss index a8184e1be..d4c17e1a8 100644 --- a/scss/fontawesome5.scss +++ b/scss/fontawesome5.scss @@ -45,8 +45,8 @@ .fab-window-close-o::before, .list-window-close-o li::before, .fa-picture-o:before, +.fa-share-square-o::before, .search-form div.sbtn::after -// .comment-reply-link::before { font-family: "Font Awesome 5 Free"; font-weight: 400; @@ -56,6 +56,10 @@ content: '\f03e'; } +.fa-share-square-o::before { + content: '\f14d'; +} + .is-style-comment-box::before, .comment-box::before{content: "\f075";} .is-style-ok-box::before, @@ -239,12 +243,27 @@ .search-form div.sbtn:before, .slick-prev.slick-arrow::before, .slick-next.slick-arrow::before, -.fa-exclamation-triangle::before +.fa-exclamation-triangle::before, +.fa-external-link::before, +.fa-level-up::before, +.fa-sign-out::before { font-family: "Font Awesome 5 Free"; font-weight: 900; } +.fa-external-link::before { + content:'\f35d'; +} + +.fa-level-up::before { + content: '\f3bf'; +} + +.fa-sign-out::before { + content: '\f2f5'; +} + .is-style-memo-box::before, .memo-box::before, .fab-pencil::before{content: "\f303";}