antd-theme-generator
Version:
This a script to generate color specific styles less file and which you can use to change theme dynamically in browser
18 lines (17 loc) • 605 B
CSS
#imported-file {
background-image: url("./folder/relative/path");
background-image: url("./relative/path");
background-image: url("../relative/path");
background-image: url("folder/module");
background-image: url("folder/module/path");
background-image: url("folder/module/relative/path");
}
#rewrite-urls-all {
background-image: url("./relative/path");
background-image: url("../relative/path");
background-image: url("./path");
background-image: url("./");
background-image: url("module");
background-image: url("module/path");
background-image: url("module/relative/path");
}