Remove focus box in favor of an underline
当前为
// ==UserScript==
// @name WaniKani Less Obtrusive Input Focus
// @namespace Violentmonkey Scripts
// @match https://www.wanikani.com/subjects/review
// @grant GM_addStyle
// @run-at document-start
// @version 1.0
// @license Apache, https://www.apache.org/licenses/LICENSE-2.0
// @author skatefriday
// @description Remove focus box in favor of an underline
// ==/UserScript==
GM_addStyle(`
input {
outline: none
}
input:focus,
input:active {
border-color: transparent;
border-bottom: 2px solid blue
}
`);