Managed to move js styling to css file and inject it during load.

This commit is contained in:
2026-01-26 08:15:53 -07:00
parent a69f9df4e1
commit 669f59db15
4 changed files with 62 additions and 39 deletions

View File

@@ -59,6 +59,11 @@ public class Plugin : BasePlugin<PluginConfiguration>, IHasWebPages
{
Name = "media_cleaner_table.js",
EmbeddedResourcePath = string.Format(CultureInfo.InvariantCulture, "{0}.Pages.media_cleaner_table.js", GetType().Namespace),
},
new PluginPageInfo
{
Name = "home.css",
EmbeddedResourcePath = string.Format(CultureInfo.InvariantCulture, "{0}.Pages.home.css", GetType().Namespace),
}
];
}