Remove unnecessary quotes from urls in CSS.

props TobiasBg.
fixes #22476.


git-svn-id: https://develop.svn.wordpress.org/trunk@27289 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2014-02-26 17:22:18 +00:00
parent 36b9bab81b
commit 724ca13549
16 changed files with 41 additions and 41 deletions
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -913,7 +913,7 @@ i.mce-caret:before {
}
#wp-link .toggle-arrow {
background: transparent url("../images/toggle-arrow.png") top left no-repeat;
background: transparent url(../images/toggle-arrow.png) top left no-repeat;
height: 23px;
line-height: 23px;
}
@@ -1831,7 +1831,7 @@ html:lang(he-il) .rtl .quicktags-toolbar input {
}
#wp-link .toggle-arrow {
background: transparent url('../images/toggle-arrow-2x.png') top left no-repeat;
background: transparent url(../images/toggle-arrow-2x.png) top left no-repeat;
-webkit-background-size: 19px 69px;
background-size: 19px 69px;
}
+2 -2
View File
@@ -1279,7 +1279,7 @@
*/
.media-frame .spinner {
background: url('../images/spinner.gif') no-repeat;
background: url(../images/spinner.gif) no-repeat;
-webkit-background-size: 20px 20px;
background-size: 20px 20px;
display: none;
@@ -1952,6 +1952,6 @@
}
.media-frame .spinner {
background-image: url('../images/spinner-2x.gif');
background-image: url(../images/spinner-2x.gif);
}
}