Files
CommunityScripts/plugins/SFWSwitch/additional_plugins.css
Servbot91 16627510ac [SFW Switch] Audio handling + Additional plugin support (#679)
* Added additional plugin support, patched additional fields previously left uncensored.

* Update README

Clarified instructions for adding custom selectors to additional_plugins.css.

* SFW Switch now mutes all sound when enabled by default.

* Refactored main css, all UI functions should be accouted for now. Updated plugin yaml description

* targeted stats-elements rather than m-sm-auto to prevent unwanted css stylings. Loosened blur

* Re-added performer card profile pic

* Added audio boolean setting (disabled by default), added additional configuration for hot or not

* adjusted img blur

* Added transition to all unblur

* Major Improvement: Fixed remaining unblurred features, fixed zombie audio bug.

* Readded readme

* Improvement: Added individual wall blur functionality for walls

* Fix double blur for groups, fix unblur in performer tagger

---------

Co-authored-by: DogmaDragon <103123951+DogmaDragon@users.noreply.github.com>
2026-03-20 19:15:07 +02:00

82 lines
1.9 KiB
CSS

/* [Global changes] Blur NSFW images and unblur on mouse over */
/*Credit: fl0w#9497 */
/* === MORE BLUR === */
/* Stash Battle */
.pwr-scene-image-container,
.pwr-scene-image-container,
.pwr-hover-preview,
.pwr-scene-image-container .pwr-scene-image,
/* HotOrNot */
.hon-performer-image,
.hon-performer-card,
.hon-scene-image,
.hon-selection-image,
.hon-image-image-container,
.hon-image-image,
/* O Stats */
.custom-stats-row .stats-element img,
#on-this-day-section [style*="position: relative; height: 400px"],
/* Sprite Tab */
.sprite-cell
{
filter: blur(30px);
transition: filter 0.25s ease;
}
/* === LESS BLUR === */
/* StashBattle */
.pwr-scene-info,
/* HotOrNot */
.hon-selection-name,
.hon-performer-info.hon-scene-info,
/* O Stats */
.custom-stats-row .stats-element,
#on-this-day-section [style*="display: flex"][style*="cursor: pointer"] img,
#on-this-day-section [style*="display: flex"][style*="cursor: pointer"] img + div,
#on-this-day-section > div:last-child
{
filter: blur(2px);
transition: filter 0.25s ease;
}
/* StashBattle */
.pwr-scene-image-container:hover,
.pwr-scene-image-container:hover .pwr-hover-preview,
.pwr-scene-image-container:hover .pwr-scene-image,
.pwr-scene-info:hover,
/* HotOrNot */
.hon-performer-image:hover,
.hon-performer-card:hover,
.hon-scene-image:hover,
.hon-image-image-container:hover,
.hon-image-image:hover,
.hon-performer-info.hon-scene-info:hover,
.hon-selection-card:hover,
.hon-selection-name:hover,
.hon-selection-image:hover,
/* Sprite Tab */
.sprite-cell:hover,
/* O Stats */
.custom-stats-row .stats-element:hover,
.custom-stats-row .stats-element:hover img,
#on-this-day-section [style*="display: flex"][style*="cursor: pointer"]:hover img,
#on-this-day-section [style*="display: flex"][style*="cursor: pointer"]:hover img + div,
#on-this-day-section > div:last-child:hover,
#on-this-day-section [style*="position: relative; height: 400px"]:hover
{
filter: blur(0px);
}