TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Resize and Style Google Chrome Scroll bar without Extension

1 点作者 pyxy大约 12 年前
Thanks to this guide now I have scrollbar looking like Plan9 Acme's one. The default scrollbar colors are very hard to see especially when your eyes are tired. With this settings I never miss the position in document.<p>::-webkit-scrollbar-track-piece{ background-color:#99994c; -webkit-border-radius:0; } ::-webkit-scrollbar{ width:12px; height:8px; } ::-webkit-scrollbar-thumb{ height:50px; background-color:#ffffea; -webkit-border-radius:0; outline:1px solid #99994c; outline-offset:-1px; border: 1px solid #99994c; }

1 comment

pyxy大约 12 年前
Thanks to this guide now I have Plan9 Acme like scrollbar in Google Chrome and Chromium and it's easy to see where you are even in the end of hard day:<p><pre><code> ::-webkit-scrollbar-track-piece{ background-color:#99994c; -webkit-border-radius:0; } ::-webkit-scrollbar{ width:12px; height:8px; } ::-webkit-scrollbar-thumb{ height:50px; background-color:#ffffea; -webkit-border-radius:0; outline:1px solid #99994c; outline-offset:-1px; border: 1px solid #99994c; }</code></pre>