Commit dfe1e61a authored by Andrew Nacin's avatar Andrew Nacin
Browse files

Remove unnecessary quotes from urls in CSS.

props TobiasBg.
fixes #22476.

Built from https://develop.svn.wordpress.org/trunk@27289


git-svn-id: https://core.svn.wordpress.org/trunk@27145 1a063a9b-81f0-0310-95a4-ce76da25c4cd
parent c3d65e5f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -133,8 +133,8 @@
/* WordPress Version Badge */

.wp-badge {
	background: #0074a2 url('../images/w-logo-white.png?ver=20131202') no-repeat;
	background: #0074a2, url('../images/wordpress-logo-white.svg?ver=20131110') no-repeat; /* multiple backgrounds are ignored by browsers that don't support SVGs */
	background: #0074a2 url(../images/w-logo-white.png?ver=20131202) no-repeat;
	background: #0074a2, url(../images/wordpress-logo-white.svg?ver=20131110) no-repeat; /* multiple backgrounds are ignored by browsers that don't support SVGs */
	background-position: center 24px;
	-webkit-background-size: 85px 85px;
	background-size: 85px 85px;
+2 −2
Original line number Diff line number Diff line
@@ -133,8 +133,8 @@
/* WordPress Version Badge */

.wp-badge {
	background: #0074a2 url('../images/w-logo-white.png?ver=20131202') no-repeat;
	background: #0074a2, url('../images/wordpress-logo-white.svg?ver=20131110') no-repeat; /* multiple backgrounds are ignored by browsers that don't support SVGs */
	background: #0074a2 url(../images/w-logo-white.png?ver=20131202) no-repeat;
	background: #0074a2, url(../images/wordpress-logo-white.svg?ver=20131110) no-repeat; /* multiple backgrounds are ignored by browsers that don't support SVGs */
	background-position: center 24px;
	-webkit-background-size: 85px 85px;
	background-size: 85px 85px;
+4 −4
Original line number Diff line number Diff line
@@ -1742,11 +1742,11 @@ div.star-holder {
	position: relative;
	height: 17px;
	width: 100px;
	background: url('../images/stars.png?ver=20121108') repeat-x bottom right;
	background: url(../images/stars.png?ver=20121108) repeat-x bottom right;
}

div.star-holder .star-rating {
	background: url('../images/stars.png?ver=20121108') repeat-x top right;
	background: url(../images/stars.png?ver=20121108) repeat-x top right;
	height: 17px;
	float: right;
}
@@ -2328,13 +2328,13 @@ img {
	/* Back-compat for pre-3.8 */
	div.star-holder,
	div.star-holder .star-rating {
		background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom right;
		background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom right;
		-webkit-background-size: 21px 37px;
		background-size: 21px 37px;
	}

	.spinner {
		background-image: url('../images/spinner-2x.gif');
		background-image: url(../images/spinner-2x.gif);
	}

	/* @todo: evaluate - most of these were likely replaced by dashicons */
+4 −4
Original line number Diff line number Diff line
@@ -1742,11 +1742,11 @@ div.star-holder {
	position: relative;
	height: 17px;
	width: 100px;
	background: url('../images/stars.png?ver=20121108') repeat-x bottom left;
	background: url(../images/stars.png?ver=20121108) repeat-x bottom left;
}

div.star-holder .star-rating {
	background: url('../images/stars.png?ver=20121108') repeat-x top left;
	background: url(../images/stars.png?ver=20121108) repeat-x top left;
	height: 17px;
	float: left;
}
@@ -2328,13 +2328,13 @@ img {
	/* Back-compat for pre-3.8 */
	div.star-holder,
	div.star-holder .star-rating {
		background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
		background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;
		-webkit-background-size: 21px 37px;
		background-size: 21px 37px;
	}

	.spinner {
		background-image: url('../images/spinner-2x.gif');
		background-image: url(../images/spinner-2x.gif);
	}

	/* @todo: evaluate - most of these were likely replaced by dashicons */
+4 −4
Original line number Diff line number Diff line
@@ -351,25 +351,25 @@ table.not-image tr.image-only {
  (min-resolution: 120dpi) {

	.image-align-none-label {
		background-image: url("../images/align-none-2x.png?ver=20120916");
		background-image: url(../images/align-none-2x.png?ver=20120916);
		-webkit-background-size: 21px 15px;
		background-size: 21px 15px;
	}

	.image-align-left-label {
		background-image: url("../images/align-left-2x.png?ver=20120916");
		background-image: url(../images/align-left-2x.png?ver=20120916);
		-webkit-background-size: 22px 15px;
		background-size: 22px 15px;
	}

	.image-align-center-label {
		background-image: url("../images/align-center-2x.png?ver=20120916");
		background-image: url(../images/align-center-2x.png?ver=20120916);
		-webkit-background-size: 21px 15px;
		background-size: 21px 15px;
	}

	.image-align-right-label {
		background-image: url("../images/align-right-2x.png?ver=20120916");
		background-image: url(../images/align-right-2x.png?ver=20120916);
		-webkit-background-size: 22px 15px;
		background-size: 22px 15px;
	}
Loading