summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-09-03 12:07:41 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-09-03 12:16:09 +0200
commit48c5373668c8659f05daad1f96287684f0bb574a (patch)
treead1200e9fad63c8c565c7a04bb7d6a434c03d0b6 /css
parenteec09515c27bb71c10255f35c4b7c1c65148216c (diff)
Fix scrolling and line-breaking in CodeQ console
Diffstat (limited to 'css')
-rw-r--r--css/codeq.css5
-rw-r--r--css/codeq/console.css2
2 files changed, 4 insertions, 3 deletions
diff --git a/css/codeq.css b/css/codeq.css
index 1207143..7172ef8 100644
--- a/css/codeq.css
+++ b/css/codeq.css
@@ -95,9 +95,10 @@ body {
/* console */
#console {
- min-height: 100%;
- height: 100%;
+ background: black;
font-size: 14px;
+ height: 100%;
+ overflow-y: auto;
padding: 0;
}
diff --git a/css/codeq/console.css b/css/codeq/console.css
index 3e00913..4290eea 100644
--- a/css/codeq/console.css
+++ b/css/codeq/console.css
@@ -1,8 +1,8 @@
.cq-con {
- background: black;
color: greenyellow;
font-family: "Courier Menlo", Monaco, Consolas, "Courier New", monospace;
font-size: medium;
+ word-break: break-all;
}
.cq-con-text {