Skip to content

Instantly share code, notes, and snippets.

@markgoodyear
Created July 28, 2015 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markgoodyear/6022067974ead622ffb0 to your computer and use it in GitHub Desktop.
Save markgoodyear/6022067974ead622ffb0 to your computer and use it in GitHub Desktop.
Swap `background-repeat: none` to `background-repeat: no-repeat`: https://twitter.com/hugogiraudel/status/625966606351495168
var noRepeat = function () {
return function (css) {
css.eachDecl('background-repeat', function (decl) {
if (decl.value.indexOf('none') !== -1) {
decl.value = 'no-repeat';
}
});
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment