When using pixiv's dark theme, you can suppress the prominent scrollbar color and design.
pixivのダークテーマを使っているとき、クソほど目立つスクロールバーの色とデザインを抑えます。
Authormihachika
LicenseCC0 1.0
Categorypixiv.net
Created
Updated
Size665 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
When using pixiv's dark theme, you can suppress the prominent scrollbar color and design.
pixivのダークテーマを使っているとき、クソほど目立つスクロールバーの色とデザインを抑えます。
1.0.0 - 2022/02/19
公開しました
/* ==UserStyle==
@name pixiv Darktheme Scrollbar
@description pixivでダークテーマを使っているとき、スクロールバーをおしゃれでスマートにする
@namespace https://userstyles.world/user/mihachika
@version 1.0.0
@license CC0 1.0
@author Mihachika
==/UserStyle== */
@-moz-document url-prefix("https://www.pixiv.net/") {
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: #666;
border-left: solid 1px #555;
}
::-webkit-scrollbar-thumb {
background: #aaa;
border-radius: 10px;
box-shadow: inset 0 0 0 2px #bbb;
}
}