Media CSS: Fix typo in `box-shadow` property for WebKit and update indentation to match the other ones.

git-svn-id: https://develop.svn.wordpress.org/trunk@29268 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2014-07-22 19:57:21 +00:00
parent 7f9edd3e69
commit 5bba352ae0
1 changed files with 12 additions and 8 deletions

View File

@ -724,10 +724,12 @@
}
.selected.attachment:focus {
-webkit-box-shadow: 0 0 0 1px #fff,
0 0 0 5px #1e8cbe;
box-shadow: 0 0 0 1px #fff,
0 0 0 5px #1e8cbe;
-webkit-box-shadow:
0 0 0 1px #fff,
0 0 0 5px #1e8cbe;
box-shadow:
0 0 0 1px #fff,
0 0 0 5px #1e8cbe;
}
.attachment-preview {
@ -1489,10 +1491,12 @@ video#inline-media-node {
}
.attachment.selection.selected:focus {
webkit-box-shadow: 0 0 0 1px #5b9dd9,
0 0 2px 2px #5b9dd9;
box-shadow: 0 0 0 1px #5b9dd9,
0 0 2px 2px #5b9dd9;
-webkit-box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 2px #5b9dd9;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 2px #5b9dd9;
outline: none;
}