Files
gerrit/polygerrit-ui/app/elements/test/plugin.html
Kasper Nilsson fbad19e18e Catch-all fix for merged linter errors
Bug: Issue 6179
Change-Id: I436b6dbd88e83b4d901d5446a0c7900678be157d
2017-05-17 17:17:25 -07:00

19 lines
422 B
HTML

<dom-module id="my-plugin">
<script>
Gerrit.install(plugin =>
plugin.registerStyleModule('app-theme', 'myplugin-app-theme')
);
</script>
</dom-module>
<dom-module id="myplugin-app-theme">
<style>
html {
--primary-text-color: #F00BAA;
--header-background-color: #F01BAA;
--header-title-content: "MyGerrit";
--footer-background-color: #F02BAA;
}
</style>
</dom-module>