sql.ru customizer

changing sql.ru styles a bit

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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;
}`);