comparison editor.css @ 113:c0bfff39abe3

Basic in and out navigation support added to funcall expressions. Added toHTML methods to listlit and arraylit.
author Mike Pavone <pavone@retrodev.com>
date Sun, 14 Apr 2013 23:09:46 -0700
parents c0cf9444cf88
children 9cf3e0b18ecc
comparison
equal deleted inserted replaced
112:c0cf9444cf88 113:c0bfff39abe3
213 .string:before, .string:after 213 .string:before, .string:after
214 { 214 {
215 content: '"'; 215 content: '"';
216 } 216 }
217 217
218 .listlit:before
219 {
220 content: '[';
221 }
222
223 .listlit:after, .arraylit:after
224 {
225 content: ']';
226 }
227
228 .arraylit:before
229 {
230 content: '#[';
231 }
232
218 .funpart 233 .funpart
219 { 234 {
220 color: #108030; 235 color: #108030;
221 } 236 }
222 237