mirror of
https://github.com/stashapp/CommunityScripts.git
synced 2026-04-12 19:41:51 -05:00
* Added additional plugin support, patched additional fields previously left uncensored. * Update README Clarified instructions for adding custom selectors to additional_plugins.css. --------- Co-authored-by: DogmaDragon <103123951+DogmaDragon@users.noreply.github.com>
135 lines
2.1 KiB
CSS
135 lines
2.1 KiB
CSS
/* [Global changes] Blur NSFW images and unblur on mouse over */
|
|
|
|
/*Credit: fl0w#9497 */
|
|
|
|
/* === MORE BLUR === */
|
|
|
|
/* scene */
|
|
.scene-card-preview,
|
|
.vjs-poster,
|
|
video,
|
|
.scene-cover,
|
|
.scrubber-item,
|
|
.scene-image,
|
|
|
|
/* image */
|
|
.image-card-preview,
|
|
.image-image,
|
|
.gallery-image,
|
|
|
|
/* group */
|
|
.group-card-image,
|
|
.group-images,
|
|
|
|
/* gallery */
|
|
.gallery-card-image,
|
|
table > tbody > tr > td > a > img.w-100,
|
|
|
|
/* performer */
|
|
.performer-card-image,
|
|
img.performer,
|
|
|
|
/* studio */
|
|
.studio-card-image,
|
|
|
|
/* tag */
|
|
.tag-card-image
|
|
|
|
|
|
{
|
|
filter: blur(30px);
|
|
}
|
|
|
|
/* === LESS BLUR === */
|
|
|
|
/* common */
|
|
.card-section-title,
|
|
|
|
/* scene */
|
|
.scene-studio-overlay,
|
|
.scene-header > h3,
|
|
h3.scene-header,
|
|
.studio-logo,
|
|
.image-thumbnail,
|
|
.TruncatedText.scene-card__description,
|
|
|
|
/* image */
|
|
h3.image-header,
|
|
|
|
/* group */
|
|
.group-details > div > h2,
|
|
|
|
/* gallery */
|
|
h3.gallery-header,
|
|
.TruncatedText.gallery-card__description,
|
|
|
|
/* studio */
|
|
.studio-details .logo,
|
|
.studio-details > div > h2,
|
|
.studio-card__details,
|
|
.studio-parent-studios,
|
|
|
|
/* tag */
|
|
.logo-container > .logo,
|
|
.logo-container > h2,
|
|
.TruncatedText.tag-description,
|
|
.tag-parent-tags
|
|
|
|
{
|
|
filter: blur(2px);
|
|
}
|
|
|
|
/* === UNBLUR ON HOVER === */
|
|
|
|
/* common */
|
|
.thumbnail-section:hover *,
|
|
.card:hover .card-section-title,
|
|
|
|
/* scene */
|
|
.card:hover .scene-studio-overlay,
|
|
.video-js:hover .vjs-poster,
|
|
video:hover,
|
|
.scene-header:hover > h3,
|
|
div:hover > .scene-header,
|
|
.studio-logo:hover,
|
|
.scene-cover:hover,
|
|
.image-thumbnail:hover,
|
|
.scene-card-preview:hover,
|
|
.scrubber-item:hover,
|
|
.scene-image:hover,
|
|
.TruncatedText.scene-card__description:hover,
|
|
|
|
/* image */
|
|
.image-image:hover,
|
|
div:hover > .image-header,
|
|
.gallery-image:hover,
|
|
|
|
/* group */
|
|
.group-images:hover,
|
|
.group-details > div > h2:hover,
|
|
|
|
/* gallery */
|
|
div:hover > .gallery-header,
|
|
table > tbody > tr > td:hover > a > img.w-100,
|
|
.TruncatedText.gallery-card__description:hover,
|
|
|
|
/* performer */
|
|
img.performer:hover,
|
|
|
|
/* studio */
|
|
.studio-details .logo:hover,
|
|
.studio-details:hover > div > h2,
|
|
.studio-card__details:hover,
|
|
.studio-parent-studios:hover,
|
|
|
|
|
|
/* tag */
|
|
.logo-container > .logo:hover,
|
|
.logo-container:hover > h2,
|
|
.TruncatedText.tag-description:hover,
|
|
.tag-parent-tags:hover
|
|
|
|
{
|
|
filter: blur(0px);
|
|
}
|