deepseek css

a

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         deepseek css
// @description  a
// @match        https://chat.deepseek.com/*
// @version 0.0.1.20251120075957
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
  const style = document.createElement('style');
style.id = 'deepseekCssStyleId';

  style.textContent = `
* {
margin-left: revert !important;
margin-right: revert !important;
flex-shrink: revert !important;
}

:root {
    color-scheme: light dark !important;
}

body {
    background-color: revert !important;
}

body > div#root > div.ds-theme > div {
    margin: 0px 8px !important;
}

div:has(> div > div > svg > path[d^="M1.00008 2.41429C0.609551"]) {
background: linear-gradient(to bottom, transparent 0%, transparent 30%, black 30%, black 100%);
}

div:has(> div > div > svg > path[d^="M23.7222 4H4.27776C3.57207"]) {
    background-color: revert !important;
}

div:has(> svg > path[d^="M1.00008 2.41429C0.609551 2.02376"]) {
    display: none !important;
}

div:has(> div > svg > path[d^="M5.856 17.121a.979.979"]):has(> div > span) {
    display: none !important;
}

div:has(> button[role="button"] > div.ds-icon > svg > path[d*="M7.00003 0.500061C3.41018"]) {
    display: none !important;
}

div:not([style]) > div.ds-message > div {
    background-color: red;
    color: black !important;
}

.ds-scroll-area__vertical-gutter {
    display: none !important;
}

div[class*='ds-message'] > div[style*='--collapsible-area-title'] > div:nth-of-type(1) > div[style*='opacity: 1;'] {
    display: none !important;
}
  `;
  document.head.appendChild(style);
})();