Skip to content

Instantly share code, notes, and snippets.

Created October 10, 2015 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4d0e8a5fe8f08e87aa01 to your computer and use it in GitHub Desktop.
Save anonymous/4d0e8a5fe8f08e87aa01 to your computer and use it in GitHub Desktop.
Zbiór skryptów które doprowadzają gram.pl do użyteczności
// ==UserScript==
// @name FixingGram
// @namespace ziptofaf
// @description Zbiór skryptów które doprowadzają gram.pl do użyteczności
// @include http://forum.gram.pl/*
// @version 1
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.js
// ==/UserScript==
$(".threadInfo").hide();
$(".content").css("color", "white");
$("p").css("color", "white");
$(".profileLink").css("max-width", "75px");
$(".profileLink").css("max-height", "75px");
$(".spoiler").css("color", "#404040");
$(".thread").css("min-height", "0rem");
$(".thread").css("padding", "0rem 1rem");
$(".postContent").css("min-height", "0rem");
$(".postUser").css("min-height", "0rem");
$(".postActions").css("min-height", "0rem");
$("body").css("background-image", "none");
$("body").css("background-color", "#202020");
$(".forumThreadList").css("background-color", "#101010");
$("#main").css("background-color", "#404040")
$(".categoryName").css("background-color", "#404040")
$(".categoryName").click(function () {
$(this).next().children().toggle();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment