From febaf36b5c355e08ceb372bf453079c75081f89c Mon Sep 17 00:00:00 2001 From: quinns <quinns@371002.no-reply.drupal.org> Date: Fri, 14 Aug 2020 19:45:50 -0500 Subject: [PATCH] Issue #3155464 by elij, quinns: navbar-toggler-icon not appearing --- css/components/navigation.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/css/components/navigation.css b/css/components/navigation.css index c215ba9..347dae8 100644 --- a/css/components/navigation.css +++ b/css/components/navigation.css @@ -95,4 +95,9 @@ ul.dropdown-menu { /* Make sure links in the active trail reverse out to white so that they do not diappear when the LIs highlight */ .dropdown-menu li.active>a { color: #fff; -} \ No newline at end of file +} + +/* Menu toggler fall back icon */ +.navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} -- GitLab