Created
February 5, 2017 17:10
-
-
Save michel-zimmer/8284334e682beca90746fe8af79f5d1a to your computer and use it in GitHub Desktop.
Restore dotted line focus indicator on IServ
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
// ==UserScript== | |
// @name IServ focusable links | |
// @namespace https://www.mzimmer.net/ | |
// @version 1.0.0 | |
// @description Restore dotted line focus indicator | |
// @author Michel Zimmer <[email protected]> (Michel Zimmer) | |
// @match https://maxe-del.de/idesk/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var node = document.createElement('style'); | |
node.innerHTML = ':focus { outline: thin dotted !important; }'; | |
document.body.appendChild(node); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment