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
var how_far_back = 60; //time in days | |
var css = '.old-issue { background-color: #ddd; opacity: 0.1; filter: blur(2px); -webkit-filter: blur(2px); }'; //your css | |
// don't edit below! | |
var $rows = document.querySelectorAll('.js-issue-row'); //all issues | |
//check for old issues | |
for (var i = 0, l = $rows.length; i < l; i++) { | |
var current_time = new Date(); | |
var $issue = $rows[i]; | |
var $issue_time = $issue.getElementsByTagName('relative-time'); |
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
.files-next-bucket.pull-request-tab-content .file:before { | |
background-color: #333; | |
border-radius: 50%; | |
color: #fff; | |
content: counter(file); | |
counter-increment: file; | |
font-size: 10px; | |
font-weight: bold; | |
height: 26px; | |
line-height: 26px; |