diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-03 12:07:41 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-03 12:16:09 +0200 |
commit | 48c5373668c8659f05daad1f96287684f0bb574a (patch) | |
tree | ad1200e9fad63c8c565c7a04bb7d6a434c03d0b6 /css | |
parent | eec09515c27bb71c10255f35c4b7c1c65148216c (diff) |
Fix scrolling and line-breaking in CodeQ console
Diffstat (limited to 'css')
-rw-r--r-- | css/codeq.css | 5 | ||||
-rw-r--r-- | css/codeq/console.css | 2 |
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 { |