summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-07-09 12:48:06 +0200
committerYorhel <git@yorhel.nl>2020-07-09 12:50:38 +0200
commit73eb6385240d82424d13235f02822920f51e974b (patch)
treee771c61f6a7a8bb66aac7cee497569b98d8955be /data
parent5cba41839bc1059fa06904f7ebccd490f93b465e (diff)
VN::Page: Display screenshot flagging status in imageviewer thing
Replacing the 'close' button with something that does pretty much the opposite may not be the wisest thing to do, but that close button has always been a bit useless considering that clicking almost anywhere on the page will have the same effect. The right-bottom of the image is the natural place for the flagging status, as that's also where the status is displayed for other images on the site.
Diffstat (limited to 'data')
-rw-r--r--data/style.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/style.css b/data/style.css
index 560f8f35..cce9e6d8 100644
--- a/data/style.css
+++ b/data/style.css
@@ -1013,7 +1013,7 @@ div#iv_view {
* 1 div -> loading
* 2 div -> img
* 3 a -> full
- * 4 a -> close
+ * 4 a -> flagging
* 5 a -> prev
* 6 a -> next */
.ivview { position: fixed; background: $boxbg$; border: 2px solid $border$; padding: 5px; text-align: center }
@@ -1021,7 +1021,7 @@ div#iv_view {
.ivview img { cursor: pointer }
.ivview > div:nth-child(1) { position: absolute; left: 48%; top: 48%; width: 30px; height: 30px }
.ivview > a:nth-child(3) { float: left; padding-right: 10px }
-.ivview > a:nth-child(4) { float: right; padding-left: 10px }
+.ivview > a:nth-child(4) { float: right; padding-left: 10px; font-size: 11px; font-weight: normal; display: inline-block; width: 130px; text-align: right; white-space: nowrap }
.ivview > a:nth-child(5) { padding-right: 5px }
.ivview > a:nth-child(6) { padding-left: 5px }