Add spoilers
This commit is contained in:
parent
b4dfefbac9
commit
a004e84adc
7 changed files with 29 additions and 2 deletions
|
@ -85,6 +85,18 @@ function postProcessElements(element) {
|
||||||
if (color) n.style.color = color
|
if (color) n.style.color = color
|
||||||
if (bgColor) n.style.backgroundColor = bgColor
|
if (bgColor) n.style.backgroundColor = bgColor
|
||||||
})
|
})
|
||||||
|
|
||||||
|
element.querySelectorAll("[data-mx-spoiler]").forEach(spoiler => {
|
||||||
|
spoiler.classList.add("mx-spoiler")
|
||||||
|
spoiler.setAttribute("tabindex", 0)
|
||||||
|
function toggle() {
|
||||||
|
spoiler.classList.toggle("mx-spoiler--shown")
|
||||||
|
}
|
||||||
|
spoiler.addEventListener("click", toggle)
|
||||||
|
spoiler.addEventListener("keydown", event => {
|
||||||
|
if (event.key === "Enter") toggle()
|
||||||
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ function sync() {
|
||||||
room: {
|
room: {
|
||||||
// pulling more from the timeline massively increases download size
|
// pulling more from the timeline massively increases download size
|
||||||
timeline: {
|
timeline: {
|
||||||
limit: 5
|
limit: 1
|
||||||
},
|
},
|
||||||
// members are not currently needed
|
// members are not currently needed
|
||||||
state: {
|
state: {
|
||||||
|
|
|
@ -52,7 +52,7 @@ select:-moz-focusring
|
||||||
text-shadow: 0 0 0 #ddd
|
text-shadow: 0 0 0 #ddd
|
||||||
|
|
||||||
body.show-focus
|
body.show-focus
|
||||||
a, select, button, input, video
|
a, select, button, input, video, div, span
|
||||||
outline-color: #fff
|
outline-color: #fff
|
||||||
|
|
||||||
&:focus
|
&:focus
|
||||||
|
|
|
@ -9,9 +9,12 @@
|
||||||
margin-right: 12px
|
margin-right: 12px
|
||||||
outline-color: #000
|
outline-color: #000
|
||||||
opacity: 0
|
opacity: 0
|
||||||
|
transform: translateY(-40px)
|
||||||
|
transition: transform 0.2s ease, opacity 0.2s ease-out
|
||||||
|
|
||||||
&--active
|
&--active
|
||||||
opacity: 1
|
opacity: 1
|
||||||
|
transform: translateY(0px)
|
||||||
|
|
||||||
&__inner
|
&__inner
|
||||||
display: grid
|
display: grid
|
||||||
|
|
|
@ -18,6 +18,9 @@
|
||||||
@at-root .c-message:last-child &
|
@at-root .c-message:last-child &
|
||||||
top: 11px
|
top: 11px
|
||||||
|
|
||||||
|
@at-root .c-message-event &
|
||||||
|
top: 7px
|
||||||
|
|
||||||
&__text
|
&__text
|
||||||
position: absolute
|
position: absolute
|
||||||
right: -14px
|
right: -14px
|
||||||
|
|
8
src/sass/components/spoilers.sass
Normal file
8
src/sass/components/spoilers.sass
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
.mx-spoiler
|
||||||
|
color: #331911
|
||||||
|
background-color: #331911
|
||||||
|
outline-color: #fff !important
|
||||||
|
cursor: pointer
|
||||||
|
|
||||||
|
&--shown
|
||||||
|
color: inherit
|
|
@ -10,3 +10,4 @@
|
||||||
@use "./components/highlighted-code"
|
@use "./components/highlighted-code"
|
||||||
@use "./components/read-marker"
|
@use "./components/read-marker"
|
||||||
@use "./components/chat-banner"
|
@use "./components/chat-banner"
|
||||||
|
@use "./components/spoilers"
|
||||||
|
|
Loading…
Reference in a new issue