Add a focus outline to the widget control toggle arrows. Fixes #27953. Props TomHarrigan.

Built from https://develop.svn.wordpress.org/trunk@29983


git-svn-id: http://core.svn.wordpress.org/trunk@29725 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2014-10-21 17:40:19 +00:00
parent ecdc8d3baf
commit 9999820b64
4 changed files with 14 additions and 4 deletions

View File

@ -2828,7 +2828,12 @@ img {
}
.widget-top a.widget-action:after {
padding: 12px 12px 0;
padding: 12px 12px 11px;
}
.widget-top a.widget-action:focus:after {
-webkit-box-shadow: 0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);
box-shadow: 0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);
}
.nav-menus-php .item-edit:before {

View File

@ -2828,7 +2828,12 @@ img {
}
.widget-top a.widget-action:after {
padding: 12px 12px 0;
padding: 12px 12px 11px;
}
.widget-top a.widget-action:focus:after {
-webkit-box-shadow: 0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);
box-shadow: 0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);
}
.nav-menus-php .item-edit:before {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long