sql.ru customizer

changing sql.ru styles a bit

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         sql.ru customizer
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  changing sql.ru styles a bit
// @author       Timur Akhmadeev [email protected]
// @match        https://www.sql.ru/*
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

GM_addStyle(`.forumTable {
    width: 100%;
    border-collapse: collapse;
    font: 15px Arial,Verdana;
}`);

GM_addStyle(`a {
    color: #000000;
}`);

GM_addStyle(`a:visited {
    color: #777;
}`);

GM_addStyle(`a.forumLink {
    color: #000000;
    font: 700 15px Arial,Verdana;
}`);

GM_addStyle(`a.forumLink:visited {
    color: #777;
    font: 700 15px Arial,Verdana;
}`);


GM_addStyle(`.forumTable tr>td {
    margin: 0;
    padding: 3px;
    border: 1px solid #d2d3dd;
    background-color: #eee;
}`);

GM_addStyle(`.msgBody a {
    color: #202020;
}`);