forked from stashapp/CommunityScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadditional_plugins.css
More file actions
94 lines (77 loc) · 2.16 KB
/
additional_plugins.css
File metadata and controls
94 lines (77 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* [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,
/* Deck Viewer */
.swiper-zoom-container,
.gallery-cover-link,
/* 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,
/* Deck Viewer */
.gallery-cover-title,
.gallery-performers,
/* 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;
}
/* Deck Viewer */
.swiper-zoom-container:hover,
.gallery-cover-link:hover,
.gallery-cover-title:hover,
.gallery-performers:hover,
/* 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);
}