From 5d9ab3778bcdb12913333deff64196590688789f Mon Sep 17 00:00:00 2001
From: hackademix
Date: Mon, 25 Feb 2019 23:05:22 +0100
Subject: Cosmetic changes to the inline code viewer toggle button.
---
html/display_panel/content/display-panel.html | 6 ++++--
html/display_panel/content/main_panel.js | 11 ++++++++++-
html/display_panel/content/panel-styles.css | 12 ++++++++++--
3 files changed, 24 insertions(+), 5 deletions(-)
(limited to 'html/display_panel')
diff --git a/html/display_panel/content/display-panel.html b/html/display_panel/content/display-panel.html
index 5eccf60..5b9f99f 100644
--- a/html/display_panel/content/display-panel.html
+++ b/html/display_panel/content/display-panel.html
@@ -73,8 +73,10 @@
-
- :
-
No code
+
+
+ :
+
diff --git a/html/display_panel/content/main_panel.js b/html/display_panel/content/main_panel.js
index 60eae55..022be8c 100644
--- a/html/display_panel/content/main_panel.js
+++ b/html/display_panel/content/main_panel.js
@@ -55,8 +55,17 @@ liTemplate.remove();
document.querySelector("#info").addEventListener("click", e => {
let button = e.target;
+ if (button.tagName === "A") {
+ setTimeout(close, 100);
+ return;
+ }
if (button.matches(".toggle-source")) {
- let sourceContainer = button.parentNode.querySelector(".source").classList.toggle("visible");
+ let parent = button.parentNode;
+ if (!parent.querySelector(".source").textContent) {
+ parent.querySelector("a").click();
+ } else {
+ parent.classList.toggle("visible");
+ }
return;
}
if (!button.matches(".buttons > button")) return;
diff --git a/html/display_panel/content/panel-styles.css b/html/display_panel/content/panel-styles.css
index 1bacc01..502323f 100644
--- a/html/display_panel/content/panel-styles.css
+++ b/html/display_panel/content/panel-styles.css
@@ -110,8 +110,12 @@ button:disabled {
}
button.toggle-source {
- display: none;
+ color: #004;
+ margin-right: .5em;
+ width: 4em;
+ overflow: hide;
}
+
pre.source {
display: none;
background: white;
@@ -121,7 +125,11 @@ pre.source {
max-height: 8em;
white-space: pre-wrap;
}
-pre.source.visible { display: block }
+
+button.hide { display: none }
+.visible > button.show { display: none !important}
+.visible > pre.source { display: block }
+.visible > button.hide { display: initial }
span.accepted, span.blocked {
color:#008e00;
--
cgit v1.2.3