From 579e58e966a2842eb8909cbeac674f0d657aa973 Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Mon, 1 Jan 2024 15:27:42 -0500 Subject: [PATCH] close button for debug info --- css/ui.css | 11 ++++++++--- index.html | 2 ++ src/ide/ui.ts | 8 +++++--- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/css/ui.css b/css/ui.css index 3bf92020..bcefb407 100644 --- a/css/ui.css +++ b/css/ui.css @@ -127,13 +127,15 @@ div.mem_info { bottom: 10px; background-color: #333; color: #66ff66; - white-space: pre; - padding: 20px; z-index: 12; font-family: "Andale Mono", "Menlo", "Lucida Console", monospace; font-size: 12pt; box-shadow: 0px 0px 8px rgba(0,0,0,.5); - max-height: 90vh; +} +div.mem_info_msg { + white-space: pre; + padding: 20px; + max-height: 80vh; overflow-y: auto; } div.mem_info a { @@ -148,6 +150,9 @@ div.mem_info a:hover { div.mem_info a.selected { color: #ffffff; } +div.mem_info button { + color: #fff; +} .mem_info_links { text-align:right; } diff --git a/index.html b/index.html index 9be4b488..0e2970c2 100644 --- a/index.html +++ b/index.html @@ -378,6 +378,8 @@ body {