This file contains 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
html { | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
font-family: Verdana, sans-serif; | |
font-size: 16px; | |
line-height: 1.5; | |
} | |
*, | |
*:before, |
This file contains 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
/* For those people that already spend too much time on The Verge */ | |
#comments, | |
.widget-recent-discussions, | |
aside.entry-unrelated { | |
display: none; | |
} | |
aside.rightcol { | |
padding-bottom: 0; |
This file contains 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
/* For people like me who already spend too much time | |
on Polygon that don't want to get sucked in even further... */ | |
#article-comments, | |
.polygon-comments-with-sidebar, | |
#follow-bar { | |
display: none; | |
} |
This file contains 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
/* Some websites provide Courier New as their code font...this changes that to something better */ | |
@font-face { | |
font-family: Courier New; | |
src: local("Consolas"); | |
} | |
@font-face { | |
font-family: Courier; | |
src: local("Consolas"); |
This file contains 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
/* For use on URLs starting with: https://jira.*/secure/RapidBoard.jspa */ | |
/* Use story points from extra fields for Kanban boards */ | |
.ghx-extra-fields { | |
display: block !important; | |
height: 0 !important; | |
margin: 0 !important; | |
} | |
.ghx-issue .ghx-extra-fields .ghx-extra-field:not([data-tooltip^="Story Points:"]), |
This file contains 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
/* For use on URLs starting with: https://jira.*/secure/RapidBoard.jspa */ | |
/* Use story points from extra fields for Kanban boards */ | |
.ghx-extra-fields { | |
display: block !important; | |
height: 0 !important; | |
margin: 0 !important; | |
} | |
.ghx-issue .ghx-extra-fields .ghx-extra-field:not([data-tooltip^="Story Points:"]), |
This file contains 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
/* on all urls starting with: https://jira.*/secure/RapidBoard.jspa */ | |
/* Use story points from extra fields for Kanban boards */ | |
.ghx-plan-extra-fields { | |
display: block !important; | |
height: 0 !important; | |
margin: 0 !important; | |
} | |
This file contains 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
const $ = (s, p = document) => p.querySelector(s); | |
const $$ = (s, p = document) => [...p.querySelectorAll(s)]; | |
const delay = (t, v) => new Promise((res) => setTimeout(res, t, v)); | |
const $when = (sel) => | |
new Promise((res) => { | |
if ($(sel)) return res($(sel)); | |
new MutationObserver((_, ob) => { |