diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2019-05-17 15:10:50 +0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2019-05-18 13:34:26 +0200 |
commit | 301ae74e8bab8cded3592588021090ff75f2bf21 (patch) | |
tree | d6ed692b02ad076c7cac69e5a5cfa7f56eb7bdd2 /help3xsl/default.css | |
parent | 1368e08b24cd3f13ef3de72475f6fbc70b56baa0 (diff) |
Improve accessibility for modules and lang menus
Ever since the contents of the modules and lang menus started
being populated upon click, the flow for screenreader users has
been potentially confusing.
This patch introduces a11y-toggle into the mix:
https://github.com/edenspiekermann/a11y-toggle
Checkboxes were changed into buttons. This hopefully makes it
clear we want the user to click them.
The contents tree still uses the checkbox hack, because its items
are populated upon page load.
Change-Id: I3482bea0c8669f96794498fc37d9d18fe3f829d5
Reviewed-on: https://gerrit.libreoffice.org/72467
Tested-by: Jenkins
Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'help3xsl/default.css')
-rw-r--r-- | help3xsl/default.css | 40 |
1 files changed, 23 insertions, 17 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css index bf1358ee11..482f3ed6d4 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -375,7 +375,11 @@ header { height: 60px; margin-right: 10px; } -.lang nav, .modules nav { +[aria-hidden='true'], +[data-a11y-toggle]:not([aria-controls]) { + display: none; +} +#langs-nav:not([aria-hidden='true']), #modules-nav:not([aria-hidden='true']) { z-index: 100; /* line them up horizontally */ display: flex; @@ -386,7 +390,7 @@ header { /* make it smooth on iOS */ -webkit-overflow-scrolling: touch; } -.lang nav a, .modules nav a { +#langs-nav a, #modules-nav a { color: #fff; background-color: #233336; display: block; @@ -411,7 +415,6 @@ footer p { background-color: transparent !important; padding: 3px 0 0 0 !important; } -.modules input[type=checkbox], .lang input[type=checkbox], .contents-treeview input[type=checkbox], aside input[type=checkbox] { position: absolute; opacity: 0; @@ -604,7 +607,7 @@ li.disabled a { border-bottom: 2px solid #f3f3f3; background-color: #233336; } -.modules label:after, .lang label:after { +#modules:after, #langs:after { font-size: 30px; color: #fff; content:"⌄"; @@ -612,10 +615,10 @@ li.disabled a { .lang { background-color: #233336; } -.lang label, .modules label { +#langs, #modules { display: none; } -.modules nav div { +#modules-nav div { background-repeat: no-repeat; background-size: contain; float: left; @@ -739,24 +742,30 @@ li.disabled a { } } @media screen and (min-width: 960px) { - .lang nav { + #langs-nav { display: none; } - .lang nav a { + #langs-nav a { font-size: 19px; white-space: normal; } - .lang label, .modules label { + /* these are buttons, so also reset some default stylings */ + #langs, #modules { cursor: pointer; color: #fff; font-size: 19px; position: relative; top: 40px; display: block; + background: transparent; + border: none; + text-transform: none; + padding:0; + line-height: normal; } - /* change the menu direction to stacked */ - .lang input[type="checkbox"]:checked ~ nav, .modules input[type="checkbox"]:checked ~ nav { + /* change the menu direction to stacked */ + #langs-nav:not([aria-hidden='true']), #modules-nav:not([aria-hidden='true']) { display: flex; flex-direction: column; max-width: 120px; @@ -766,17 +775,14 @@ li.disabled a { position: absolute; top: 80px; } - .modules input[type="checkbox"]:checked ~ nav { + #modules-nav { background-color: #101820; text-align: left; } - .modules nav { - display: none; - } - .modules nav div { + #modules-nav div { display: block; } - .modules nav a { + #modules-nav a { font-size: 19px; } aside { |