gulp-css-url-adjuster icon indicating copy to clipboard operation
gulp-css-url-adjuster copied to clipboard

adjust css urls for images and stuff

Results 12 gulp-css-url-adjuster issues
Sort by recently updated
recently updated
newest added

HI, I am using the gulp-css-url-adjuster to change the url of images in scss but i have noticed that it changes fonts url too..Is it possible to target only image...

Add in deprecation notice to `README.md`

There's a queue of PRs going all the way back to Feb 2015. Is there any chance at all of these being merged? If not, you should probably consider saying...

When there is an absolute url in the CSS it is altered without anything set to touch it. ``` .pipe(urlAdjuster({ replace: ['../fonts/bootstrap', './css-lib/Bootstrap/3.3.1/assets/fonts/bootstrap'] })) ``` That will turn ``` background-image:...

Some icon font formats needs hash in URL. With append it look like this example: ``` css @font-face { font-family: 'Glyphicons Halflings'; src: url("/fonts/glyphicons-halflings-regular.eot?v5"); src: url("/fonts/glyphicons-halflings-regular.eot?#iefix?v5")format('embedded-opentype'), url("/fonts/glyphicons-halflings-regular.woff?v5")format('woff'), url("/fonts/glyphicons-halflings-regular.ttf?v5")format('truetype'), url("/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular?v5")format('svg'); }...

Hi, if you use absolute url as prepend option plugin convert http:// to http:/

... the name/path of the file being processed I've made this change because I found myself needing to know where relative URLs were relative to in order to be able...

When processing the url, the aduster removes single quotes from urls. it destroys inline svgs. **source** ``` css background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974...

I know this isn't `gulp-*sass*-url-adjuster` but sometimes Sass files can contain CSS. I also know with Sass it would be easier to adjust paths with a global variable. However, if...

As stated in #14 the "//" is replaced with a single "/" which makes the url relative instead of absolute.