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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Show HN: Hacker News Post Coloring Extension to Chromium

5 点作者 Midnightas超过 6 年前

2 条评论

4684499超过 6 年前
Actually you can use simple CSS with styling extensions like Stylus to achieve similar effect.<p><pre><code> .ind img { height: 100%; border-right: 3px solid red; } </code></pre> If you want different color for different level of indent, just use attribute selector, like:<p><pre><code> .ind img { height: 100%; border-right: 3px solid; } img[width=&quot;40&quot;] { border-color: red; } img[width=&quot;80&quot;] { border-color: blue; }</code></pre>
评论 #17851784 未加载
rambojazz超过 6 年前
Does this only color the sidebar next to comments or is there more?