No.251
Mod: Thank you for reporting that. Everything should be fine now.
This board is using the custom CSS rule to hide all GIFs
[code]
img[src*="gif"] {
display: none!important;
}
[/code]
However, it also hides the collapse video button next to inline videos, leaving them unable to be closed.
[code]
<img src="/static/collapse.gif" alt="[ - ]" title="Collapse video" style="margin-left: -15px; float: left; display: inline;">
[/code]
Suggestion: change the CSS rule to
[code]
img.post-image[src*=".gif"] {
display: none !important;
}
[/code]
which should only apply to posted images.
Note: Ideally, [src$=".gif"] should be used instead of [src*=".gif"], since it only selects strings that ends in ".gif". However, I'm unable to get it to work in my testings.
Post last edited at
No.252
Mod: Thanks, I have updated the CSS.
In the meantime, the temporary fix for users is to add the following style rule to Options -> User Css:
[code]
img[src="/static/collapse.gif"] {
display: inline!important;
}
[/code]
Post last edited at
No.339
bump