Reddit - add large break between comment threads

Reddit The Button Show Cheaters -- https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal -- https://flattr.com/profile/pushka - Donate through flattr.com

От 01.05.2015. Виж последната версия.




// ==UserScript==
// @name        Reddit - add large break between comment threads
// @namespace   english
// @description Reddit The Button Show Cheaters --  https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal --  https://flattr.com/profile/pushka - Donate through flattr.com
// @include     http*://*reddit.com*
// @version     1.0
// @run-at      document-end
// @grant       GM_addStyle
// ==/UserScript==
// Main - Reddit The Button Show Cheaters
$(document).ready(function(){
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '.commentarea .sitetable.nestedlisting>.comment {  margin-bottom: 25px !important;  border-bottom: 8px solid #d5d5d5 !important;  padding-bottom: 25px !important;}';
document.getElementsByTagName('head')[0].appendChild(style);
});