From 5c3b2368669c1fc7f25c4ffc7c94c4822632e855 Mon Sep 17 00:00:00 2001
From: Claas Kazzer <kazzer@uni-leipzig.de>
Date: Thu, 9 Jul 2020 21:51:09 +0200
Subject: [PATCH] refs #17920 [finc, VF5.1, BARF] adds spaces to offcanvas
 togglers

* adds a space to before and after icons of offcanvas toggler
* non-breaking beautifying change
---
 themes/finc/scss/compiled.scss | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/themes/finc/scss/compiled.scss b/themes/finc/scss/compiled.scss
index e9dd655e78a..5de35874c15 100644
--- a/themes/finc/scss/compiled.scss
+++ b/themes/finc/scss/compiled.scss
@@ -1648,12 +1648,34 @@ footer {
 //// Off-Canvas
 @media only screen and (max-width: $screen-sm-max) {
   // Define position of VF5.1 offcanvas toggler
+  // FIXME: CHECK THIS! CK
   .search-stats,
   .search-controls {
     clear: both;
   }
 }
 
+//// Re-define button arrows by adding space to the :after/:before elements -- see offcanvas.scss
+.offcanvas-left {
+  .close-offcanvas::after {
+    content: '\00a0\f105';
+  }
+
+  .search-filter-toggle::before {
+    content: '\f100\00a0';
+  }
+}
+
+.offcanvas-right {
+  .close-offcanvas::before {
+    content: '\f104\00a0';
+  }
+
+  .search-filter-toggle::after {
+    content: '\00a0\f101';
+  }
+}
+
 // make 100% wide to avoid conflict with other elements, for back-toggler see below
 .offcanvas-toggler,
 .offcanvas-toggler button {
-- 
GitLab