commit d74ab6e7ab6da13ac36211089c77b42b4c747132
parent dfa27150062d11e2d51dd8fd5bcfa9cbdd58c39b
Author: corndog <cauchyn@firemail.cc>
Date: Tue, 23 Oct 2018 23:00:20 -0700
Revert back to display toggle
Opacity at 0 still means the element is there,
occupying space even if unseen. This design
won't work.
Need to refrain from quick hacks when I'm tired.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/in/static/style.css b/in/static/style.css
@@ -60,7 +60,7 @@ sup {
}
img.embed {
- opacity: 0;
+ display: none;
position: absolute;
right: 102%;
z-index: 1;
@@ -71,7 +71,7 @@ img.embed.left {
}
button:hover > img.embed {
- opacity: 1;
+ display: block;
}
.bold-on-hover:hover {