From 3d2e291c0c225c071635cee10ba0ec0f0859ce53 Mon Sep 17 00:00:00 2001 From: Adam Kumpf Date: Thu, 28 Mar 2013 11:12:17 +0100 Subject: [PATCH] Update Chaos.css to include indent-guide and fold Add indent guide to theme. Modify ace_fold to be more subtle (the big inline ace_fold widgets are a bit distracting on this dark theme). This is true to the original Chaos theme (Space Editor). --- lib/ace/theme/chaos.css | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/lib/ace/theme/chaos.css b/lib/ace/theme/chaos.css index fb3ad6af..e45c95c7 100644 --- a/lib/ace/theme/chaos.css +++ b/lib/ace/theme/chaos.css @@ -137,4 +137,20 @@ .ace-chaos .ace_fold-widget.ace_closed:after { content: '‣' -} \ No newline at end of file +} + +.ace-chaos .ace_indent-guide { + border-right:1px dotted #333; + margin-right:-1px; +} + +.ace-chaos .ace_fold { + background: #222; + border-radius: 3px; + color: #7AF; + border: none; +} +.ace-chaos .ace_fold:hover { + background: #CCC; + color: #000; +}