From bc12afb1fa14a157c64bcdc5a1b59e6ff8776440 Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Fri, 20 May 2022 16:28:48 +0200 Subject: dashboard/app: add #crash_div to style.css Currently we're using a TEXTAREA on the /bug page to display logs, which won't let us do fancy things like links. Replacing it with a `

` will allow HTML
formatting.
---
 pkg/html/generated.go | 10 ++++++++++
 1 file changed, 10 insertions(+)

(limited to 'pkg')

diff --git a/pkg/html/generated.go b/pkg/html/generated.go
index 02c1a94b5..c5e6f31ad 100644
--- a/pkg/html/generated.go
+++ b/pkg/html/generated.go
@@ -273,6 +273,16 @@ aside {
 	height: 85vh;
 }
 
+#crash_div {
+	align: left;
+	width: 90%;
+	height: 400px;
+	margin: 0 0;
+	overflow: scroll;
+	border: 1px solid #777;
+	padding: 0px;
+	background: transparent;
+}
 
 .input-values {
 	margin-left: 7px;
-- 
cgit mrf-deployment