[COMPONENTS] LeftPanel and RightPanel checkbox hack trick

The anchor used for the accessibility menu preceded the left/right panel sections, rendering the checkbox useless
This commit is contained in:
Eliseu Amaro 2021-12-02 15:49:09 +00:00
parent 9482bb2254
commit 5cd96669fd
Signed by: eliseuamaro
GPG Key ID: 96DA09D4B97BC2D5
2 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
tabindex="-1">{{ icon('menu', 'icon icon-left') | raw }}</label>
<input type="checkbox" id="panel-left-toggle" aria-hidden="true" tabindex="-1">
<a id="anchor-left-panel" class="anchor-hidden" title="{{ 'Press tab to access selected region!' | trans }}"></a>
<section class="header-panel section-panel-left accessibility-target">
<a id="anchor-left-panel" class="anchor-hidden" title="{{ 'Press tab to access selected region!' | trans }}"></a>
<aside class="panel-content">
{% if app.user %}
<section class='section-widget section-widget-padded' title="{{ 'Your profile information.' | trans }}">

View File

@ -3,8 +3,8 @@
tabindex="-1">{{ icon('notes', 'icon icon-right') | raw }}</label>
<input type="checkbox" id="panel-right-toggle" aria-hidden="true" tabindex="-1">
<a id="anchor-right-panel" class="anchor-hidden" title="{{ 'Press tab to access selected region!' | trans }}"></a>
<div class="header-panel section-panel-right accessibility-target">
<a id="anchor-right-panel" class="anchor-hidden" title="{{ 'Press tab to access selected region!' | trans }}"></a>
<aside class="panel-content">
{% set blocks = handle_event('AppendRightPostingBlock', request) %}