# HG changeset patch # User Meredith Howard # Date 1518629640 18000 # Node ID 2c32255d5c8415fb23357e5340a9ec45e94ee6ed # Parent 4c569c2420f1457065ce5787b9f52ec9fc00c62a remove dotjs files diff --git a/.css/nntp.perl.org.css b/.css/nntp.perl.org.css deleted file mode 100644 --- a/.css/nntp.perl.org.css +++ /dev/null @@ -1,3 +0,0 @@ -body, td { - font-size: 100% !important; -} diff --git a/.css/search.cpan.org.css b/.css/search.cpan.org.css deleted file mode 100644 --- a/.css/search.cpan.org.css +++ /dev/null @@ -1,27 +0,0 @@ -/* Remove pointless up-arrows */ -a.u img { - display: none; -} - -/* Move TOC to the side, get the meat up top */ -div.toc { - background-color: #DDD; - float: right; - overflow-x: auto; - max-width: 17em; - white-space: nowrap; -} -div.toc ul { - padding-left: 20; -} - -/* "cpan" style */ -pre.sh_sourceCode{ background-color:#fff; color:#000; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_keyword{ color:#000; font-weight:bold; font-style:normal}pre.sh_sourceCode .sh_type{ color:#830000; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_string{ color:#f00; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_regexp{ color:#f00; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_specialchar{ color:#f0f; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_comment{ color:#838183; font-weight:normal; font-style:italic}pre.sh_sourceCode .sh_number{ color:#2928ff; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_preproc{ color:#008200; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_function{ color:#010181; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_url{ color:#f00; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_date{ color:#000; font-weight:bold; font-style:normal}pre.sh_sourceCode .sh_time{ color:#000; font-weight:bold; font-style:normal}pre.sh_sourceCode .sh_file{ color:#000; font-weight:bold; font-style:normal}pre.sh_sourceCode .sh_ip{ color:#f00; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_name{ color:#f00; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_variable{ color:#036; font-weight:bold; font-style:normal}pre.sh_sourceCode .sh_oldfile{ color:#f0f; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_newfile{ color:#f00; font-weight:normal; font-style:normal}pre.sh_sourceCode .sh_difflines{ color:#000; font-weight:bold; font-style:normal}pre.sh_sourceCode .sh_selector{ color:#000; font-weight:bold; font-style:normal}pre.sh_sourceCode .sh_property{ color:#000; font-weight:bold; font-style:normal}pre.sh_sourceCode .sh_value{ color:#f00; font-weight:normal; font-style:normal} - -/* bg, no border for literal sections */ -.pod pre { - background-color: #F6F6F6; - border: none; -} - - diff --git a/.js/fogbugz.com.js b/.js/fogbugz.com.js deleted file mode 100644 --- a/.js/fogbugz.com.js +++ /dev/null @@ -1,12 +0,0 @@ -// ==UserScript== -// @name FogBugz Helper -// @namespace http://ziprecruiter.github.io/ -// @version 0.1 -// @description Various alterations to FogBugz's UI -// @author ZipRecruiter -// @match https://*.fogbugz.com/* -// @grant none -// @run-at document-start -// ==/UserScript== - -javascript:(function(){url='//ziprecruiter.github.io/greasemonkey/fogbugz-helper/fogbugz-helper.js';document.head.appendChild(document.createElement('script')).src=url+'?'+new Date().getTime();})(); diff --git a/.js/lobste.rs.js b/.js/lobste.rs.js deleted file mode 100644 --- a/.js/lobste.rs.js +++ /dev/null @@ -1,29 +0,0 @@ -// If story previews are enabled, set regular spacing and place byline below -// title. -if (document.querySelector('div.story_content')) { - var sheet = document.createElement('style') - sheet.innerHTML = "\ - ol.list li.story { height: 9em; } \ - li.story div.byline { color: #777; } \ - li.story div.byline a { color: #777; } \ - li.story div.story_content { color: #999; font-size: 95%; max-height: 3em !important; }" - document.body.appendChild(sheet) - - var bylines = document.querySelectorAll('div.story_content + div.byline') - for (var e of bylines) { - e.parentNode.insertBefore(e, e.previousElementSibling) - } -} - -// only safe when you've guaranteed a parent matches -function parentSelector (el, selector) { - while ((el = el.parentElement) && !el.matches(selector)); - return el; -} - -['angersock'].forEach(function (u) { - var collapse = document.querySelectorAll('div.comment > div.details > div.byline > a[href="/u/' + u + '"]') - for (var el of collapse) { - parentSelector(el, 'div.comment').previousElementSibling.click() - } -})