Last active
April 29, 2016 14:22
-
-
Save Cosmeen/071c56d99b966d394d15bb2007c455a1 to your computer and use it in GitHub Desktop.
Hacker News small css addtions to comments to see them better (GreaseMonkey Script)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name yc | |
// @namespace yc | |
// @include https://news.ycombinator.com/* | |
// @version 0.1 | |
// @grant GM_addStyle | |
// @author Cosmeen | |
// ==/UserScript== | |
GM_addStyle(" \ | |
.ind { \ | |
border-right: 1px dotted #cccccc; \ | |
position: relative; \ | |
} \ | |
.ind::before { \ | |
color: #cccccc; \ | |
content: '^'; \ | |
font-size: 10px; \ | |
position: absolute; \ | |
right: -4px; \ | |
top: -3px; \ | |
} \ | |
"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment