WaniKani Less Obtrusive Input Focus

Remove focus box in favor of an underline

目前为 2023-03-27 提交的版本。查看 最新版本

// ==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
    }
`);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址