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

View File

@@ -353,13 +353,13 @@ td.plugin-title p {
}
#content-resize-handle {
background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
background: transparent url(../images/resize.gif) no-repeat scroll right bottom;
width: 12px;
cursor: n-resize;
}
.rtl #content-resize-handle {
background: transparent url('../images/resize-rtl.gif') no-repeat scroll left bottom;
background: transparent url(../images/resize-rtl.gif) no-repeat scroll left bottom;
}
#wp-word-count {
@@ -1153,14 +1153,14 @@ table.links-table {
(min-resolution: 120dpi) {
#content-resize-handle,
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
background: transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;
-webkit-background-size: 11px 11px;
background-size: 11px 11px;
}
.rtl #content-resize-handle,
.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll right bottom;
background: transparent url(../images/resize-rtl-2x.gif) no-repeat scroll right bottom;
}
}