Skip to content

Instantly share code, notes, and snippets.

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 gene1wood/658b573cdf1c1ca08603b1d993918406 to your computer and use it in GitHub Desktop.
Save gene1wood/658b573cdf1c1ca08603b1d993918406 to your computer and use it in GitHub Desktop.
A userscript to change the appearance of inline code in Mozilla's Confluence Cloud wiki so that it looks like GitHub inline code
// ==UserScript==
// @name Confluence Cloud Inline Code Styling like GitHub
// @namespace http://cs.cementhorizon.com
// @include https://mozilla-hub.atlassian.net/wiki/*
// @grant GM_addStyle
// @version 1.0
// @author Gene Wood
// @description Cause inline code in Confluence Cloud to be styled like inline code in GitHub
// ==/UserScript==
GM_addStyle ( `
code:not([class]) {
margin: 0px 2px !important;
padding: 0px 5px !important;
background-color: rgb(240, 240, 240) !important;
border: 1px solid rgb(187, 187, 187) !important;
border-radius: 5px !important;
}
` );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment