mirror of
https://github.com/discourse/discourse.git
synced 2024-12-21 11:06:43 +08:00
55 lines
647 B
SCSS
55 lines
647 B
SCSS
|
.spoiled {
|
||
|
cursor: auto;
|
||
|
-webkit-transform: translateZ(0); // Safari jitter fix
|
||
|
|
||
|
.lightbox .meta {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.spoiler-blurred {
|
||
|
@include unselectable;
|
||
|
cursor: pointer;
|
||
|
filter: blur(0.5em);
|
||
|
|
||
|
a,
|
||
|
area,
|
||
|
audio,
|
||
|
button,
|
||
|
details,
|
||
|
embed,
|
||
|
iframe,
|
||
|
img.animated,
|
||
|
input,
|
||
|
map,
|
||
|
object,
|
||
|
option,
|
||
|
portal,
|
||
|
select,
|
||
|
textarea,
|
||
|
track,
|
||
|
video,
|
||
|
.lightbox {
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
filter: blur(1em);
|
||
|
}
|
||
|
|
||
|
.discourse-no-touch & {
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
filter: blur(0.18em);
|
||
|
|
||
|
img {
|
||
|
filter: blur(0.5em);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|