Greasy Fork

滚动条

滚动条样式调整

目前为 2020-12-08 提交的版本。查看 最新版本

// ==UserScript==
// @name 滚动条
// @description 滚动条样式调整
// @author Dawn
// @version 0.1.0
// @match *://*/*
// @run-at document-start
// @namespace https://greasyfork.org/users/714473
// ==/UserScript==


-function() {
	'use strict';
    var scrollbarstyle = '::-webkit-scrollbar {width: 6px; height: 6px; } ::-webkit-scrollbar-track {width: 6px; background: rgba(123,123,123, 0.1); -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; } ::-webkit-scrollbar-thumb {background-color: rgba(123,123,123, 0.5); background-clip: padding-box; min-height: 28px; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; } ::-webkit-scrollbar-thumb:hover {background-color: rgba(123,123,123, 1); }'
    document.head.insertAdjacentHTML('beforeend','<style>'+scrollbarstyle+'</style>')
}()