From 90f534fd4395964ab21d7cefcf80bd4144c9f454 Mon Sep 17 00:00:00 2001 From: Bhesh Thapa <36714740+thapabhesh@users.noreply.github.com> Date: Thu, 17 Sep 2020 15:48:23 +0100 Subject: [PATCH] Replace glyphicons with fontawesome fonts --- .../components/controls/date-input.scss | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Template/Website/wwwroot/styles/common/components/controls/date-input.scss b/Template/Website/wwwroot/styles/common/components/controls/date-input.scss index f204876..f0a95f8 100644 --- a/Template/Website/wwwroot/styles/common/components/controls/date-input.scss +++ b/Template/Website/wwwroot/styles/common/components/controls/date-input.scss @@ -63,4 +63,28 @@ background-color: $color-primary; } } + + .glyphicon { + font-family: 'Font Awesome 5 Free'; + + &.glyphicon-chevron-down { + &::before { + content: "\f078"; + } + + &::after { + content: none; + } + } + + &.glyphicon-chevron-up { + &::before { + content: "\f077"; + } + + &::after { + content: none; + } + } + } }