aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/static
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 /dashboard/app/static
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 'dashboard/app/static')
-rw-r--r--dashboard/app/static/style.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/dashboard/app/static/style.css b/dashboard/app/static/style.css
index d35eb81a5..d627c70c5 100644
--- a/dashboard/app/static/style.css
+++ b/dashboard/app/static/style.css
@@ -269,6 +269,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;