Skip to content

Instantly share code, notes, and snippets.

@sneakers-the-rat
Created October 14, 2021 06:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sneakers-the-rat/f38e8afe2bb0d48079e47dacc5535a54 to your computer and use it in GitHub Desktop.
Save sneakers-the-rat/f38e8afe2bb0d48079e47dacc5535a54 to your computer and use it in GitHub Desktop.
change color of hypothes.is bucket sidebar
window.onload = function() {
let style = document.createElement('style');
style.textContent = `
.Buckets__list {
background-color: transparent !important;
}
`
let container = document.getElementsByTagName("hypothesis-sidebar")[0];
container.shadowRoot.appendChild(style);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment