Greasy Fork is available in English.

Small thumbnails

Are thumbnails too large?

Versione datata 27/05/2020. Vedi la nuova versione l'ultima versione.

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!)

/* ==UserStyle==
@name         Small thumbnails
@namespace    https://openusercss.org/theme/5ea886273b032e0c00658bc5
@homepageURL  https://openusercss.org/theme/5ea886273b032e0c00658bc5
@version      1.0.0
@license      Other
@description  Are thumbnails too large?
Gotcha.
@author       justKaex (https://openusercss.org/profile/5ea860b73b032e0c00658bc0)
@preprocessor uso
==/UserStyle== */

@-moz-document domain("deviantart.com") {
[data-hook^="content_row-"] [data-hook="deviation_std_thumb"],
[data-hook^="content_row-"] [data-hook="deviation_std_thumb"]>div {
	height: 250px !important;
}

.theme-dark [data-hook^="content_row-"]>div{
    background: var(--D2);
}
.theme-light [data-hook^="content_row-"]>div{
    background: var(--L13);
}
.theme-light.light-green [data-hook^="content_row-"]>div{
    background: var(--L2);
}

.daeditor-torpedo-grid [data-hook^="content_row-"]>div,
.daeditor-torpedo-grid-item{
	height: 200px !important;
}

.daeditor-torpedo-grid-item > div{
	height: 190px !important;
}

[data-hook^="content_row-"] [data-hook="deviation_std_thumb"]>div>div>img,
[data-hook^="content_row-"] [data-hook="deviation_std_thumb"]>div>img,
.daeditor-torpedo-grid-item img{
    height: 200px !important;
    object-fit: contain !important;
}

[data-hook^="content_row-"]>div {
    padding: 20px 0 !important;
}

}