Skip to content

Commit

Permalink
cduvall: small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkduvall committed Jan 11, 2013
1 parent b92397b commit d07658a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
3 changes: 2 additions & 1 deletion config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ var CONFIG = CONFIG || {};
CONFIG.prompt = function(cwd, user) {
if (user)
return '<span class="user">' + user +
'@clarkduvall.com</span>:<span class="dir">' + cwd + '</span>$ ';
'</span>@<span class="host">clarkduvall.com</span>:<span class="cwd">' +
cwd + '</span>$ ';
return 'jsterm1.0 $ ';
};

Expand Down
25 changes: 20 additions & 5 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,37 @@ div.jsterm {
white-space: pre-wrap;
}

div.jsterm .host, div.jsterm .host a {
color: #5555ff;
font-weight: bold;
}

div.jsterm .user, div.jsterm .user a {
color: #73E234;
color: #555555;
font-weight: bold;
}

div.jsterm .cwd, div.jsterm .cwd a {
color: #ffff55;
font-weight: bold;
}

div.jsterm .dir, div.jsterm .dir a {
color: #5555ff;
font-weight: bold;
}

div.jsterm .dir, div.jsterm .link, div.jsterm .dir a, div.jsterm .link a {
color: #729FBD;
div.jsterm .link, div.jsterm .link a {
color: #5555ff;
font-weight: bold;
}

div.jsterm .exec, div.jsterm .exec a {
color: #73E234;
color: #55ff55;
font-weight: bold;
}

div.jsterm .img, div.jsterm .img a {
color: #95709F;
color: #ff55ff;
font-weight: bold;
}

0 comments on commit d07658a

Please sign in to comment.