Skip to content

Instantly share code, notes, and snippets.

@eeroan
Created November 22, 2013 12:41
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 eeroan/7599264 to your computer and use it in GitHub Desktop.
Save eeroan/7599264 to your computer and use it in GitHub Desktop.
User script for making confluence blog layout decent. To install, save this file (from <>) and drag it to window -> extensions in Chrome
// ==UserScript==
// @match https://extra.reaktor.fi/*
// ==/UserScript==
var link = document.createElement('style')
link.setAttribute('type', 'text/css')
link.innerHTML=[
'.page-metadata ul { overflow: auto; }',
'.page-metadata { overflow: hidden; }'
].join('\n')
document.getElementsByTagName('head')[0].appendChild(link)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment