Skip to content

Instantly share code, notes, and snippets.

@Cosmeen
Last active April 29, 2016 14:22
Show Gist options
  • Save Cosmeen/071c56d99b966d394d15bb2007c455a1 to your computer and use it in GitHub Desktop.
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)
// ==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