From 770a150b4214d269eb89988909bbf5d21bab7f67 Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Thu, 1 Sep 2016 22:01:44 +0000 Subject: [PATCH] Accessibility: Make links in the Customizer underlined by default. Links within lines or blocks of text should always be underlined since they can't rely on color alone to be distinguished from the surrounding text. Exceptions can be handled on a case-by-case basis. Props Presskopp for the initial patch. Fixes #37527. git-svn-id: https://develop.svn.wordpress.org/trunk@38503 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/customize-controls.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/css/customize-controls.css b/src/wp-admin/css/customize-controls.css index af62e5e23e..a7648fd89c 100644 --- a/src/wp-admin/css/customize-controls.css +++ b/src/wp-admin/css/customize-controls.css @@ -3,7 +3,8 @@ body { -webkit-text-size-adjust: 100%; } -#customize-controls a { +.customize-controls-close, +.widget-control-actions a { text-decoration: none; }