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

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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