mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-14 17:44:25 +00:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user