NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Stop Naut from moving comments to the right slightly
// @namespace https://jdf2.org/
// @version 1.0
// @description Just, https://www.reddit.com/r/softwaregore/comments/5353hv/i_just_wanna_click_th_no/
// @author Jared (jdf2)
// @match https://*.reddit.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle(".entry.mod-button.ut-processed{padding-left: 0px!important; border-left: 0px!important;}");
})();