Skip to content

Commit

Permalink
a11y: use native button elements where appropriate #982
Browse files Browse the repository at this point in the history
  • Loading branch information
McShelby committed Jan 1, 2025
1 parent 8c403f2 commit ee07f8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion assets/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -1479,7 +1479,7 @@ pre:not(.mermaid) .copy-to-clipboard-button:hover {
color: var(--INTERNAL-CODE-BLOCK-BG-color);
}

.disableInlineCopyToClipboard span > code.copy-to-clipboard-code + span.copy-to-clipboard-button {
.disableInlineCopyToClipboard span > code.copy-to-clipboard-code + .copy-to-clipboard-button {
display: none;
}

Expand Down Expand Up @@ -1821,6 +1821,7 @@ html[dir='rtl'] .expand[open] > .box-label > i.expander-icon {

/* anchors */
.anchor {
background-color: transparent;
color: var(--INTERNAL-MAIN-LINK-color);
cursor: pointer;
font-size: 0.5em;
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.2.1+6747b8862e1ea7331662a6376ef02a48126816ae
7.2.1+8c403f2aadf03c87f7741ead8e4c5425cbe30ed1
6 changes: 3 additions & 3 deletions static/js/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ function initMermaid(update, attrs) {
var svg = d3.select(this);
svg.html('<g>' + svg.html() + '</g>');
var inner = svg.select('*:scope > g');
parent.insertAdjacentHTML('beforeend', '<span class="svg-reset-button" title="' + window.T_Reset_view + '"><i class="fas fa-undo-alt"></i></span>');
parent.insertAdjacentHTML('beforeend', '<button class="svg-reset-button" title="' + window.T_Reset_view + '"><i class="fas fa-undo-alt"></i></button>');
var button = parent.querySelector('.svg-reset-button');
var zoom = d3.zoom().on('zoom', function (e) {
inner.attr('transform', e.transform);
Expand Down Expand Up @@ -530,7 +530,7 @@ function initAnchorClipboard() {
document.querySelectorAll('h1~h2,h1~h3,h1~h4,h1~h5,h1~h6').forEach(function (element) {
var url = encodeURI((document.location.origin == 'null' ? document.location.protocol + '//' + document.location.host : document.location.origin) + document.location.pathname);
var link = url + '#' + element.id;
var new_element = document.createElement('span');
var new_element = document.createElement('button');
new_element.classList.add('anchor');
if (!window.relearn.disableAnchorCopy) {
new_element.setAttribute('title', window.T_Copy_link_to_clipboard);
Expand Down Expand Up @@ -660,7 +660,7 @@ function initCodeClipboard() {
code.parentNode.replaceChild(span, code);
code = clone;
}
var button = document.createElement('span');
var button = document.createElement('button');
button.classList.add('copy-to-clipboard-button');
button.setAttribute('title', window.T_Copy_to_clipboard);
button.innerHTML = '<i class="far fa-copy"></i>';
Expand Down

0 comments on commit ee07f8f

Please sign in to comment.