/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/dawn', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
32
33
exports.isDark = false;
34
exports.cssClass = "ace-dawn";
35
exports.cssText = ".ace-dawn .ace_gutter {\
36
background: #ebebeb;\
37
color: #333\
38
}\
39
.ace-dawn .ace_print-margin {\
40
width: 1px;\
41
background: #e8e8e8\
42
}\
43
.ace-dawn .ace_scroller {\
44
background-color: #F9F9F9\
45
}\
46
.ace-dawn .ace_text-layer {\
47
color: #080808\
48
}\
49
.ace-dawn .ace_cursor {\
50
border-left: 2px solid #000000\
51
}\
52
.ace-dawn .ace_overwrite-cursors .ace_cursor {\
53
border-left: 0px;\
54
border-bottom: 1px solid #000000\
55
}\
56
.ace-dawn .ace_marker-layer .ace_selection {\
57
background: rgba(39, 95, 255, 0.30)\
58
}\
59
.ace-dawn.ace_multiselect .ace_selection.ace_start {\
60
box-shadow: 0 0 3px 0px #F9F9F9;\
61
border-radius: 2px\
62
}\
63
.ace-dawn .ace_marker-layer .ace_step {\
64
background: rgb(255, 255, 0)\
65
}\
66
.ace-dawn .ace_marker-layer .ace_bracket {\
67
margin: -1px 0 0 -1px;\
68
border: 1px solid rgba(75, 75, 126, 0.50)\
69
}\
70
.ace-dawn .ace_marker-layer .ace_active-line {\
71
background: rgba(36, 99, 180, 0.12)\
72
}\
73
.ace-dawn .ace_gutter-active-line {\
74
background-color : #dcdcdc\
75
}\
76
.ace-dawn .ace_marker-layer .ace_selected-word {\
77
border: 1px solid rgba(39, 95, 255, 0.30)\
78
}\
79
.ace-dawn .ace_invisible {\
80
color: rgba(75, 75, 126, 0.50)\
81
}\
82
.ace-dawn .ace_keyword,\
83
.ace-dawn .ace_meta {\
84
color: #794938\
85
}\
86
.ace-dawn .ace_constant,\
87
.ace-dawn .ace_constant.ace_character,\
88
.ace-dawn .ace_constant.ace_character.ace_escape,\
89
.ace-dawn .ace_constant.ace_other {\
90
color: #811F24\
91
}\
92
.ace-dawn .ace_invalid.ace_illegal {\
93
text-decoration: underline;\
94
font-style: italic;\
95
color: #F8F8F8;\
96
background-color: #B52A1D\
97
}\
98
.ace-dawn .ace_invalid.ace_deprecated {\
99
text-decoration: underline;\
100
font-style: italic;\
101
color: #B52A1D\
102
}\
103
.ace-dawn .ace_support {\
104
color: #691C97\
105
}\
106
.ace-dawn .ace_support.ace_constant {\
107
color: #B4371F\
108
}\
109
.ace-dawn .ace_fold {\
110
background-color: #794938;\
111
border-color: #080808\
112
}\
113
.ace-dawn .ace_markup.ace_list,\
114
.ace-dawn .ace_support.ace_function {\
115
color: #693A17\
116
}\
117
.ace-dawn .ace_storage {\
118
font-style: italic;\
119
color: #A71D5D\
120
}\
121
.ace-dawn .ace_string {\
122
color: #0B6125\
123
}\
124
.ace-dawn .ace_string.ace_regexp {\
125
color: #CF5628\
126
}\
127
.ace-dawn .ace_comment {\
128
font-style: italic;\
129
color: #5A525F\
130
}\
131
.ace-dawn .ace_variable {\
132
color: #234A97\
133
}\
134
.ace-dawn .ace_markup.ace_underline {\
135
text-decoration: underline\
136
}\
137
.ace-dawn .ace_markup.ace_heading {\
138
color: #19356D\
139
}\
140
.ace-dawn .ace_indent-guide {\
141
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4+fPnf4ZVq1b9BwAkVQboFQv98gAAAABJRU5ErkJggg==) right repeat-y\
142
}";
143
144
var dom = require("../lib/dom");
145
dom.importCssString(exports.cssText, exports.cssClass);
146
});