Skip to content

Instantly share code, notes, and snippets.

@Pupskuchen
Last active August 29, 2015 14:23
Show Gist options
  • Save Pupskuchen/c0e613bac0f42497cd61 to your computer and use it in GitHub Desktop.
Save Pupskuchen/c0e613bac0f42497cd61 to your computer and use it in GitHub Desktop.
gives you the ability to show all active abilities in your lane
document.getElementById('activitylog').removeAttribute('style');
var styles = document.createElement('style');
styles.type = 'text/css';
styles.textContent = '#activeinlanecontainer:hover {height:auto;background:rgba(50,50,50,0.9);padding-bottom:10px;position:absolute;z-index:1} #activeinlanecontainer:hover + #activitylog {margin-top:97px} #activitylog {margin-top: 29px}';
document.getElementsByTagName('head')[0].appendChild(styles);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment