rewrite-urls-all.css 605 B

123456789101112131415161718
  1. #imported-file {
  2. background-image: url("./folder/relative/path");
  3. background-image: url("./relative/path");
  4. background-image: url("../relative/path");
  5. background-image: url("folder/module");
  6. background-image: url("folder/module/path");
  7. background-image: url("folder/module/relative/path");
  8. }
  9. #rewrite-urls-all {
  10. background-image: url("./relative/path");
  11. background-image: url("../relative/path");
  12. background-image: url("./path");
  13. background-image: url("./");
  14. background-image: url("module");
  15. background-image: url("module/path");
  16. background-image: url("module/relative/path");
  17. }