Files
gerrit/polygerrit-ui/app/elements/test/plugin.html
Kasper Nilsson b9de9c417c ES6ify /elements/test/*
Bug: Issue 6179
Change-Id: I1550ad3930da1a20307de89b75226df5d5912d98
2017-05-15 17:09:16 -07:00

19 lines
423 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>