blob: b3aa98f0ea46ba6297ca2a70c1acb9b9c13ce04b [file] [log] [blame]
<dom-module id="my-plugin">
<script>
Gerrit.install(plugin => {
plugin.registerStyleModule('change-metadata', 'my-plugin-style');
});
</script>
</dom-module>
<dom-module id="my-plugin-style">
<template>
<style>
html {
--change-metadata-assignee: {
display: none;
}
--change-metadata-label-status: {
display: none;
}
--change-metadata-strategy: {
display: none;
}
--change-metadata-topic: {
display: none;
}
}
</style>
</template>
</dom-module>