ro
770959137a
main navigation had buttons nested inside of href tags to house previous font icons that were removed, so the nesting is no longer needed and it could introduce accessibility propblems, so it needed to be cleande up now they are hrefs styled as the previous buttons so there is no visual change in the UI
13 lines
544 B
PHP
13 lines
544 B
PHP
<div class="submenu">
|
|
<a class="main-nav-primary" href='/dashboard/pages' title="view pages">
|
|
<svg id="option-menu-pin" class="icon">
|
|
<use id="option-menu-pin" xlink:href="/assets/images/global/sprite.svg#minicute-book"/>
|
|
</svg>
|
|
</a>
|
|
<a class="main-nav-primary" href='/dashboard/page/add/new' title="add new page">
|
|
<svg id="option-menu-pin" class="icon">
|
|
<use id="option-menu-pin" xlink:href="/assets/images/global/sprite.svg#entypo-squared-plus"/>
|
|
</svg>
|
|
</a>
|
|
</div>
|