From f66429486aebce867fc83e97a103fb73ed975ca7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 26 May 2019 02:01:52 +0000 Subject: [PATCH] Twenty Seventeen: Accessibility: Add missing focus state for native audio and video embeds. Props kjellr, karlgroves. Fixes #47190. Built from https://develop.svn.wordpress.org/trunk@45425 git-svn-id: http://core.svn.wordpress.org/trunk@45236 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/style.css | 5 +++++ wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentyseventeen/style.css b/wp-content/themes/twentyseventeen/style.css index 6a6a629abb..7ca4f6c950 100644 --- a/wp-content/themes/twentyseventeen/style.css +++ b/wp-content/themes/twentyseventeen/style.css @@ -2846,6 +2846,11 @@ img.alignright { padding: 0; } +audio:focus, +video:focus { + outline: thin dotted; +} + /* Make sure embeds and iframes fit their containers. */ embed, diff --git a/wp-includes/version.php b/wp-includes/version.php index 632a3d9e8e..15cab9fd8e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45424'; +$wp_version = '5.3-alpha-45425'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.