GPT reply/delete/flag/edit/etc. icon Distancer

Adds margin to GPT reply/delete/flag/edit/etc. icon elements to avoid clicking the wrong icon

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         GPT reply/delete/flag/edit/etc. icon Distancer
// @namespace    _pc
// @version      0.4
// @description  Adds margin to GPT reply/delete/flag/edit/etc. icon elements to avoid clicking the wrong icon
// @author       verydelight
// @license      MIT
// @icon         https://www.gayporntube.com/favicon.ico
// @connect      gayporntube.com
// @compatible   Firefox Tampermonkey
// @match        *://*.gayporntube.com/*
// ==/UserScript==
(function() {
    'use strict';
    const SPACING = 25; //spacing in pixels/px
    const style = document.createElement('style');
    style.textContent = `
    #content a:has(.fas) {
    margin-left: ${SPACING}px !important;
    margin-right: ${SPACING}px !important;
    visibility: visible !important;
    }
    #content .main-title a:has(.fas),
    #content .pagination a:has(.fas),
    #content .blog-item-entry-details a:has(.fas),
    #content .gallery-navigation a:has(.fas){
    margin-left: initial !important;
    margin-right: initial !important;
    visibility: initial !important;
    }
    `;
    document.head.appendChild(style);
})();