Buttons: More consistent focus styling.

props afercia.
fixes #32915.


git-svn-id: https://develop.svn.wordpress.org/trunk@35421 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Helen Hou-Sandi 2015-10-28 20:16:43 +00:00
parent e52a0d4e7f
commit 6c243567cf
1 changed files with 6 additions and 10 deletions

View File

@ -162,12 +162,9 @@ TABLE OF CONTENTS:
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus,
.wp-core-ui .button-link:focus {
-webkit-box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(0, 115, 170, .8);
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(0, 115, 170, .8);
border-color: #5b9dd9;
-webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
}
.wp-core-ui .button.active,
@ -184,14 +181,13 @@ TABLE OF CONTENTS:
}
.wp-core-ui .button.active:focus {
border-color: #5b9dd9;
-webkit-box-shadow:
inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ),
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(0, 115, 170, .8);
0 0 3px rgba( 0, 115, 170, .8 );
box-shadow:
inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ),
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(0, 115, 170, .8);
0 0 3px rgba( 0, 115, 170, .8 );
}
.wp-core-ui .button[disabled],