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

git-svn-id: https://develop.svn.wordpress.org/trunk@29983 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2014-10-21 17:39:02 +00:00
parent 34f0e3844b
commit 368bc7b468
1 changed files with 6 additions and 1 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 {