Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Focus visible #10058

Merged
merged 8 commits into from
Nov 5, 2021
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
- Non-admin users with permission to administrate other users can now require password resets for other users. ([#10057](https://github.com/craftcms/cms/issues/10057))
- The Plugin Store will now prevent installation of plugins that require a greater PHP version than what’s allowed by the environment.

### Fixed
- Fixed a bug where focus rings weren’t visible on Safari. ([#10058](https://github.com/craftcms/cms/pull/10058))

## 3.7.19.1 - 2021-11-04

### Changed
Expand Down Expand Up @@ -76,7 +79,6 @@
- Fixed an error that could occur if the `log` component was configured with a custom log target and `flushInterval` set to `1`.
- Fixed a bug where `plugin/*` commands weren’t always handling failures properly. ([#9984](https://github.com/craftcms/cms/issues/9984))
- Fixed a bug where entry title changes could be overlooked when merging upstream changes into a draft. ([#9966](https://github.com/craftcms/cms/issues/9966))
- Fixed a bug where focus rings weren’t ever visible on Safari, unless the “Always show focus rings” accessibility preference was enabled. ([#10009](https://github.com/craftcms/cms/pull/10009))
- Fixed a bug where it wasn’t possible to query for draft or revision creators via GraphQL. ([craftcms/gatsby-source-craft#56](https://github.com/craftcms/gatsby-source-craft/issues/56))
- Fixed a bug where Super Table blocks could go missing when a draft was created, if their block type ID matched another Matrix/Super Table/Neo block’s ID on the same page.

Expand Down
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ const jsDeps = [
{srcGlob: 'node_modules/velocity-animate/velocity.js', dest: `${libPath}/velocity`},
{srcGlob: 'node_modules/xregexp/xregexp-all.js', dest: `${libPath}/xregexp`},
{srcGlob: 'node_modules/yii2-pjax/jquery.pjax.js', dest: `${libPath}/yii2-pjax`},
{srcGlob: 'node_modules/focus-visible/dist/focus-visible.js', dest: `${libPath}/focus-visible`},
];

const jquiGlob = [
Expand Down
2 changes: 2 additions & 0 deletions lib/focus-visible/focus-visible.js

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

1 change: 1 addition & 0 deletions lib/focus-visible/focus-visible.js.map

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

Loading