From f25f4a89452b46d50d26095690f52d9557e57a99 Mon Sep 17 00:00:00 2001 From: Jared Galanis Date: Wed, 20 Sep 2023 10:55:49 -0400 Subject: [PATCH] fix: metadata step glyphs (#1213) Closes: https://github.com/eclipse-pass/main/issues/704 Closes: https://github.com/eclipse-pass/main/issues/705 For some unknown reason the FontAwesome glyphs aren't rendering any more. This moves to using unicode chars instead. --- app/styles/app.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/styles/app.css b/app/styles/app.css index 37ca86a5..b92087e2 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -282,16 +282,16 @@ td { font-style: normal; } .glyphicon-plus-sign:before { - content: '\f067'; + content: '+'; } .glyphicon-minus-sign:before { - content: '\f068'; + content: '–'; } .glyphicon-chevron-up:before { - content: '\f077'; + content: '\22c0'; } .glyphicon-chevron-down:before { - content: '\f078'; + content: '\22c1'; } .glyphicon-info-sign:before { content: '\f05a';