aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/html/generated.go
diff options
context:
space:
mode:
authorAlexander Potapenko <ramosian.glider@gmail.com>2022-05-20 16:28:48 +0200
committerAlexander Potapenko <ramosian.glider@gmail.com>2022-05-20 17:34:59 +0200
commitbc12afb1fa14a157c64bcdc5a1b59e6ff8776440 (patch)
treee03bbdda6844f81110981fca675b0610210f9607 /pkg/html/generated.go
parentcb1ac2e75516d296f0ed6884292eeb72916a6271 (diff)
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 `<div id="crash_div"><p><pre>` will allow HTML formatting.
Diffstat (limited to 'pkg/html/generated.go')
-rw-r--r--pkg/html/generated.go10
1 files changed, 10 insertions, 0 deletions
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;