/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
1
/* ***** BEGIN LICENSE BLOCK *****
2
 * Distributed under the BSD license:
3
 *
4
 * Copyright (c) 2010, Ajax.org B.V.
5
 * All rights reserved.
6
 * 
7
 * Redistribution and use in source and binary forms, with or without
8
 * modification, are permitted provided that the following conditions are met:
9
 *     * Redistributions of source code must retain the above copyright
10
 *       notice, this list of conditions and the following disclaimer.
11
 *     * Redistributions in binary form must reproduce the above copyright
12
 *       notice, this list of conditions and the following disclaimer in the
13
 *       documentation and/or other materials provided with the distribution.
14
 *     * Neither the name of Ajax.org B.V. nor the
15
 *       names of its contributors may be used to endorse or promote products
16
 *       derived from this software without specific prior written permission.
17
 * 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
 * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
22
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 *
29
 * ***** END LICENSE BLOCK ***** */
30
31
define('ace/theme/xcode', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
32
33
exports.isDark = false;
34
exports.cssClass = "ace-xcode";
35
exports.cssText = "/* THIS THEME WAS AUTOGENERATED BY Theme.tmpl.css (UUID: EE3AD170-2B7F-4DE1-B724-C75F13FE0085) */\
36
.ace-xcode .ace_gutter {\
37
background: #e8e8e8;\
38
color: #333\
39
}\
40
.ace-xcode .ace_print-margin {\
41
width: 1px;\
42
background: #e8e8e8\
43
}\
44
.ace-xcode .ace_scroller {\
45
background-color: #FFFFFF\
46
}\
47
.ace-xcode .ace_text-layer {\
48
color: #000000\
49
}\
50
.ace-xcode .ace_cursor {\
51
border-left: 2px solid #000000\
52
}\
53
.ace-xcode .ace_overwrite-cursors .ace_cursor {\
54
border-left: 0px;\
55
border-bottom: 1px solid #000000\
56
}\
57
.ace-xcode .ace_marker-layer .ace_selection {\
58
background: #B5D5FF\
59
}\
60
.ace-xcode.ace_multiselect .ace_selection.ace_start {\
61
box-shadow: 0 0 3px 0px #FFFFFF;\
62
border-radius: 2px\
63
}\
64
.ace-xcode .ace_marker-layer .ace_step {\
65
background: rgb(198, 219, 174)\
66
}\
67
.ace-xcode .ace_marker-layer .ace_bracket {\
68
margin: -1px 0 0 -1px;\
69
border: 1px solid #BFBFBF\
70
}\
71
.ace-xcode .ace_marker-layer .ace_active-line {\
72
background: rgba(0, 0, 0, 0.071)\
73
}\
74
.ace-xcode .ace_gutter-active-line {\
75
background-color: rgba(0, 0, 0, 0.071)\
76
}\
77
.ace-xcode .ace_marker-layer .ace_selected-word {\
78
border: 1px solid #B5D5FF\
79
}\
80
.ace-xcode .ace_constant.ace_language,\
81
.ace-xcode .ace_keyword,\
82
.ace-xcode .ace_meta,\
83
.ace-xcode .ace_variable.ace_language {\
84
color: #C800A4\
85
}\
86
.ace-xcode .ace_invisible {\
87
color: #BFBFBF\
88
}\
89
.ace-xcode .ace_constant.ace_character,\
90
.ace-xcode .ace_constant.ace_other {\
91
color: #275A5E\
92
}\
93
.ace-xcode .ace_constant.ace_numeric {\
94
color: #3A00DC\
95
}\
96
.ace-xcode .ace_entity.ace_other.ace_attribute-name,\
97
.ace-xcode .ace_support.ace_constant,\
98
.ace-xcode .ace_support.ace_function {\
99
color: #450084\
100
}\
101
.ace-xcode .ace_fold {\
102
background-color: #C800A4;\
103
border-color: #000000\
104
}\
105
.ace-xcode .ace_entity.ace_name.ace_tag,\
106
.ace-xcode .ace_support.ace_class,\
107
.ace-xcode .ace_support.ace_type {\
108
color: #790EAD\
109
}\
110
.ace-xcode .ace_storage {\
111
color: #C900A4\
112
}\
113
.ace-xcode .ace_string {\
114
color: #DF0002\
115
}\
116
.ace-xcode .ace_comment {\
117
color: #008E00\
118
}\
119
.ace-xcode .ace_indent-guide {\
120
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==) right repeat-y;\
121
}";
122
123
var dom = require("../lib/dom");
124
dom.importCssString(exports.cssText, exports.cssClass);
125
});