Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sa11y_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.1.5
4.1.6
2 changes: 1 addition & 1 deletion assets/vendor/sa11y/bookmarklet/apca.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/vendor/sa11y/bookmarklet/v2-en.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/vendor/sa11y/bookmarklet/v2.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 9 additions & 8 deletions assets/vendor/sa11y/dist/css/control-panel.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ audio {
/* ************************************* */
#toggle {
position: fixed;
bottom: 15px;
bottom: var(--sa11y-toggle-y-offset);
z-index: 2147483644;
display: flex;
align-items: center;
Expand All @@ -89,13 +89,13 @@ audio {
background-size: 150% 150%;
border-radius: 50%;
transition: all 0.2s ease-in-out;
inset-inline-end: 18px;
inset-inline-end: var(--sa11y-toggle-x-offset);
}
#toggle.left, #toggle.top-left {
inset-inline-start: 18px;
inset-inline-start: var(--sa11y-toggle-x-offset);
}
#toggle.top-left, #toggle.top-right {
top: 15px;
top: var(--sa11y-toggle-y-offset);
bottom: unset;
}
@media screen and (forced-colors: active) {
Expand Down Expand Up @@ -158,7 +158,7 @@ audio {
/* ************************************* */
#panel {
position: fixed;
bottom: 25px;
bottom: calc(var(--sa11y-toggle-y-offset) + var(--sa11y-panel-y-gap));
z-index: 2147483643;
overflow: visible;
visibility: hidden;
Expand All @@ -169,14 +169,15 @@ audio {
transition: transform 0.2s, opacity 0.2s background 0.2s;
transform: scale(0);
transform-origin: 100% 100%;
inset-inline-end: 42px;
inset-inline-end: calc(var(--sa11y-toggle-x-offset) + var(--sa11y-panel-x-gap));
}
#panel.left, #panel.top-left {
inset-inline-start: 42px;
inset-inline-start: calc(var(--sa11y-toggle-x-offset) + var(--sa11y-panel-x-gap));
inset-inline-end: unset;
}
#panel.top-right, #panel.top-left {
top: 35px;
/* Top needs 10px extra. */
top: calc(var(--sa11y-toggle-y-offset) + var(--sa11y-panel-y-gap) + 10px);
bottom: unset;
}
#panel.active {
Expand Down
2 changes: 1 addition & 1 deletion assets/vendor/sa11y/dist/css/control-panel.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions assets/vendor/sa11y/dist/css/sa11y.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@
/* i18n: utility to flip icons for transform: scaleX(y) */
--sa11y-icon-direction: 1;
--sa11y-float-rtl: right;
/* Sa11y control panel position */
--sa11y-panel-x-gap: 24px;
--sa11y-panel-y-gap: 10px;
--sa11y-toggle-x-offset: 18px;
--sa11y-toggle-y-offset: 15px;
}

[dir=rtl] {
Expand Down
Loading