Skip to content

Commit 80bb61d

Browse files
committed
General: revert [55045].
This changeset reverts [55045] to maintain backward compatibility for developers using the function in their SCSS. Follow-up to [55045]. Unprops audrasjb. Props peterwilsoncc, kebbet. See #56811. git-svn-id: https://develop.svn.wordpress.org/trunk@55048 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 0d39c0a commit 80bb61d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/wp-admin/css/colors/_admin.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
@import 'variables';
33
@import 'mixins';
44

5-
@function url-friendly-color( $color ) {
5+
/**
6+
* This function name uses British English to maintain backward compatibility, as developers
7+
* may use the function in their own admin CSS files. See #56811.
8+
*/
9+
@function url-friendly-colour( $color ) {
610
@return '%23' + str-slice( '#{ $color }', 2, -1 );
711
}
812

@@ -62,7 +66,7 @@ span.wp-media-buttons-icon:before {
6266
/* Forms */
6367

6468
input[type=checkbox]:checked::before {
65-
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27#{url-friendly-color($form-checked)}%27%2F%3E%3C%2Fsvg%3E");
69+
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27#{url-friendly-colour($form-checked)}%27%2F%3E%3C%2Fsvg%3E");
6670
}
6771

6872
input[type=radio]:checked::before {

0 commit comments

Comments
 (0)