Last active
August 29, 2015 14:23
-
-
Save Pupskuchen/c0e613bac0f42497cd61 to your computer and use it in GitHub Desktop.
gives you the ability to show all active abilities in your lane
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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