Skip to content

Commit

Permalink
Update navbar toggler icon (#1688) (#1689)
Browse files Browse the repository at this point in the history
Updates navbar toggler icon from BS5 icon/class to Font Awesome icon for consistency and easier client BS5 theme customization
  • Loading branch information
phalene-bytes authored Nov 20, 2023
1 parent f312dce commit e78c42b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions plugins/arDominionB5Plugin/templates/_header.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@
<?php } ?>
</a>
<?php } ?>
<button class="navbar-toggler atom-btn-secondary my-2 me-1" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-content" aria-controls="navbar-content" aria-expanded="false">
<span class="navbar-toggler-icon"></span>
<button class="navbar-toggler atom-btn-secondary my-2 me-1 px-1" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-content" aria-controls="navbar-content" aria-expanded="false">
<i
class="fas fa-2x fa-fw fa-bars"
data-bs-toggle="tooltip"
data-bs-placement="bottom"
title="<?php echo __('Toggle navigation'); ?>"
aria-hidden="true">
</i>
<span class="visually-hidden"><?php echo __('Toggle navigation'); ?></span>
</button>
<div class="collapse navbar-collapse flex-wrap justify-content-end me-1" id="navbar-content">
Expand Down

0 comments on commit e78c42b

Please sign in to comment.