From: Scott Baker Date: Fri, 20 Jun 2014 05:42:49 +0000 (-0700) Subject: better colors and fonts for terminal X-Git-Url: http://git.onelab.eu/?p=plstackapi.git;a=commitdiff_plain;h=c9dcc7888096394108fc3524cea5b6c90a1f6064 better colors and fonts for terminal --- diff --git a/planetstack/core/static/shell/constants.js b/planetstack/core/static/shell/constants.js index 5231cda..97b690a 100644 --- a/planetstack/core/static/shell/constants.js +++ b/planetstack/core/static/shell/constants.js @@ -14,7 +14,7 @@ var DefaultInputHtml = function(stack) { linePrompt += "."; } } - return "
" + + return "
" + linePrompt + "" + "
"; diff --git a/planetstack/core/static/shell/opencloud_shell.css b/planetstack/core/static/shell/opencloud_shell.css index 97df0a2..26df63f 100644 --- a/planetstack/core/static/shell/opencloud_shell.css +++ b/planetstack/core/static/shell/opencloud_shell.css @@ -3,11 +3,11 @@ margin:50px auto 50px auto; border: 1px solid black; height: 400px; - background: black; + background: #002b36; overflow: scroll; } -#terminal div.line { +#terminal div.terminal_line { width: 940px; margin-bottom: 5px; } @@ -18,10 +18,10 @@ border: none; display: inline; padding: 2px; - background: black; - color: #45FF17; - font-size: 18px; - font-family: Monaco, monospace; + background: #002b36; + color: #839496; + font-size: 15px; + font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace; border-radius:0; } @@ -31,17 +31,17 @@ #terminal p { margin: 2px; - color: #45FF17; - font-size: 18px; - font-family: Monaco, serif; + color: #839496; + font-size: 15px; + font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace; } .terminal_help { margin: 2px; - color: #45FF17; - font-size: 18px; - font-family: Monaco, serif; - background:black; + color: #839496; + font-size: 15px; + font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace; + background: #002b36; padding:0; line-height:normal; } @@ -51,7 +51,7 @@ } #terminal span.prompt { - color: #45FF17; + color: #839496; font-size: 16px; margin-left: 2px; }