ace-rails-ap 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +1 -1
- data/lib/ace/rails/version.rb +1 -1
- data/vendor/assets/javascripts/ace/ace.js +6911 -5290
- data/vendor/assets/javascripts/ace/ext-chromevox.js +537 -0
- data/vendor/assets/javascripts/ace/ext-elastic_tabstops_lite.js +301 -0
- data/vendor/assets/javascripts/ace/ext-emmet.js +1109 -0
- data/vendor/assets/javascripts/ace/ext-keybinding_menu.js +207 -0
- data/vendor/assets/javascripts/ace/ext-language_tools.js +1665 -0
- data/vendor/assets/javascripts/ace/ext-modelist.js +168 -0
- data/vendor/assets/javascripts/ace/ext-old_ie.js +500 -0
- data/vendor/assets/javascripts/ace/ext-options.js +252 -0
- data/vendor/assets/javascripts/ace/ext-searchbox.js +421 -0
- data/vendor/assets/javascripts/ace/ext-settings_menu.js +632 -0
- data/vendor/assets/javascripts/ace/ext-spellcheck.js +68 -0
- data/vendor/assets/javascripts/ace/ext-split.js +271 -0
- data/vendor/assets/javascripts/ace/ext-static_highlight.js +178 -0
- data/vendor/assets/javascripts/ace/ext-statusbar.js +47 -0
- data/vendor/assets/javascripts/ace/ext-textarea.js +478 -0
- data/vendor/assets/javascripts/ace/ext-themelist.js +86 -0
- data/vendor/assets/javascripts/ace/ext-whitespace.js +206 -0
- data/vendor/assets/javascripts/ace/keybinding-emacs.js +822 -131
- data/vendor/assets/javascripts/ace/keybinding-vim.js +382 -258
- data/vendor/assets/javascripts/ace/mode-abap.js +261 -0
- data/vendor/assets/javascripts/ace/mode-actionscript.js +257 -0
- data/vendor/assets/javascripts/ace/mode-ada.js +118 -0
- data/vendor/assets/javascripts/ace/mode-asciidoc.js +373 -0
- data/vendor/assets/javascripts/ace/mode-assembly_x86.js +217 -0
- data/vendor/assets/javascripts/ace/mode-autohotkey.js +225 -0
- data/vendor/assets/javascripts/ace/mode-batchfile.js +213 -0
- data/vendor/assets/javascripts/ace/mode-c9search.js +144 -124
- data/vendor/assets/javascripts/ace/mode-c_cpp.js +296 -254
- data/vendor/assets/javascripts/ace/mode-clojure.js +113 -177
- data/vendor/assets/javascripts/ace/mode-cobol.js +125 -0
- data/vendor/assets/javascripts/ace/mode-coffee.js +152 -235
- data/vendor/assets/javascripts/ace/mode-coldfusion.js +823 -835
- data/vendor/assets/javascripts/ace/mode-csharp.js +325 -187
- data/vendor/assets/javascripts/ace/mode-css.js +583 -297
- data/vendor/assets/javascripts/ace/mode-curly.js +2423 -0
- data/vendor/assets/javascripts/ace/mode-d.js +492 -0
- data/vendor/assets/javascripts/ace/mode-dart.js +993 -0
- data/vendor/assets/javascripts/ace/mode-diff.js +124 -204
- data/vendor/assets/javascripts/ace/mode-django.js +2448 -0
- data/vendor/assets/javascripts/ace/mode-dot.js +361 -0
- data/vendor/assets/javascripts/ace/mode-ejs.js +2817 -0
- data/vendor/assets/javascripts/ace/mode-erlang.js +987 -0
- data/vendor/assets/javascripts/ace/mode-forth.js +280 -0
- data/vendor/assets/javascripts/ace/mode-ftl.js +1061 -0
- data/vendor/assets/javascripts/ace/mode-glsl.js +313 -275
- data/vendor/assets/javascripts/ace/mode-golang.js +268 -275
- data/vendor/assets/javascripts/ace/mode-groovy.js +347 -492
- data/vendor/assets/javascripts/ace/mode-haml.js +498 -0
- data/vendor/assets/javascripts/ace/mode-handlebars.js +2433 -0
- data/vendor/assets/javascripts/ace/mode-haskell.js +362 -0
- data/vendor/assets/javascripts/ace/mode-haxe.js +226 -202
- data/vendor/assets/javascripts/ace/mode-html.js +1099 -802
- data/vendor/assets/javascripts/ace/mode-html_completions.js +309 -0
- data/vendor/assets/javascripts/ace/mode-html_ruby.js +2822 -0
- data/vendor/assets/javascripts/ace/mode-ini.js +185 -0
- data/vendor/assets/javascripts/ace/mode-jack.js +653 -0
- data/vendor/assets/javascripts/ace/mode-jade.js +2081 -0
- data/vendor/assets/javascripts/ace/mode-java.js +339 -488
- data/vendor/assets/javascripts/ace/mode-javascript.js +342 -478
- data/vendor/assets/javascripts/ace/mode-json.js +215 -178
- data/vendor/assets/javascripts/ace/mode-jsoniq.js +2761 -0
- data/vendor/assets/javascripts/ace/mode-jsp.js +1553 -0
- data/vendor/assets/javascripts/ace/mode-jsx.js +325 -289
- data/vendor/assets/javascripts/ace/mode-julia.js +286 -0
- data/vendor/assets/javascripts/ace/mode-latex.js +141 -46
- data/vendor/assets/javascripts/ace/mode-less.js +493 -151
- data/vendor/assets/javascripts/ace/mode-liquid.js +594 -656
- data/vendor/assets/javascripts/ace/mode-lisp.js +137 -0
- data/vendor/assets/javascripts/ace/mode-livescript.js +288 -0
- data/vendor/assets/javascripts/ace/mode-logiql.js +669 -0
- data/vendor/assets/javascripts/ace/mode-lsl.js +890 -0
- data/vendor/assets/javascripts/ace/mode-lua.js +274 -368
- data/vendor/assets/javascripts/ace/mode-luapage.js +1331 -1107
- data/vendor/assets/javascripts/ace/mode-lucene.js +64 -0
- data/vendor/assets/javascripts/ace/mode-makefile.js +332 -0
- data/vendor/assets/javascripts/ace/mode-markdown.js +1303 -948
- data/vendor/assets/javascripts/ace/mode-matlab.js +230 -0
- data/vendor/assets/javascripts/ace/mode-mushcode.js +705 -0
- data/vendor/assets/javascripts/ace/mode-mushcode_high_rules.js +569 -0
- data/vendor/assets/javascripts/ace/mode-mysql.js +185 -0
- data/vendor/assets/javascripts/ace/mode-nix.js +935 -0
- data/vendor/assets/javascripts/ace/mode-objectivec.js +699 -0
- data/vendor/assets/javascripts/ace/mode-ocaml.js +44 -63
- data/vendor/assets/javascripts/ace/mode-pascal.js +233 -0
- data/vendor/assets/javascripts/ace/mode-perl.js +116 -189
- data/vendor/assets/javascripts/ace/mode-pgsql.js +886 -500
- data/vendor/assets/javascripts/ace/mode-php.js +1158 -380
- data/vendor/assets/javascripts/ace/mode-plain_text.js +56 -0
- data/vendor/assets/javascripts/ace/mode-powershell.js +222 -167
- data/vendor/assets/javascripts/ace/mode-prolog.js +354 -0
- data/vendor/assets/javascripts/ace/mode-properties.js +100 -0
- data/vendor/assets/javascripts/ace/mode-protobuf.js +885 -0
- data/vendor/assets/javascripts/ace/mode-python.js +99 -201
- data/vendor/assets/javascripts/ace/mode-r.js +337 -0
- data/vendor/assets/javascripts/ace/mode-rdoc.js +210 -0
- data/vendor/assets/javascripts/ace/mode-rhtml.js +2663 -0
- data/vendor/assets/javascripts/ace/mode-ruby.js +262 -136
- data/vendor/assets/javascripts/ace/mode-rust.js +245 -0
- data/vendor/assets/javascripts/ace/mode-sass.js +443 -0
- data/vendor/assets/javascripts/ace/mode-scad.js +225 -240
- data/vendor/assets/javascripts/ace/mode-scala.js +340 -494
- data/vendor/assets/javascripts/ace/mode-scheme.js +143 -0
- data/vendor/assets/javascripts/ace/mode-scss.js +499 -157
- data/vendor/assets/javascripts/ace/mode-sh.js +180 -110
- data/vendor/assets/javascripts/ace/mode-sjs.js +1154 -0
- data/vendor/assets/javascripts/ace/mode-snippets.js +198 -0
- data/vendor/assets/javascripts/ace/mode-soy_template.js +2707 -0
- data/vendor/assets/javascripts/ace/mode-space.js +160 -0
- data/vendor/assets/javascripts/ace/mode-sql.js +48 -69
- data/vendor/assets/javascripts/ace/mode-stylus.js +447 -0
- data/vendor/assets/javascripts/ace/mode-svg.js +552 -605
- data/vendor/assets/javascripts/ace/mode-tcl.js +139 -98
- data/vendor/assets/javascripts/ace/mode-tex.js +187 -0
- data/vendor/assets/javascripts/ace/mode-textile.js +29 -40
- data/vendor/assets/javascripts/ace/mode-tmsnippet.js +200 -0
- data/vendor/assets/javascripts/ace/mode-toml.js +177 -0
- data/vendor/assets/javascripts/ace/mode-twig.js +2228 -0
- data/vendor/assets/javascripts/ace/mode-typescript.js +1018 -0
- data/vendor/assets/javascripts/ace/mode-vbscript.js +250 -0
- data/vendor/assets/javascripts/ace/mode-velocity.js +1621 -0
- data/vendor/assets/javascripts/ace/mode-verilog.js +127 -0
- data/vendor/assets/javascripts/ace/mode-vhdl.js +139 -0
- data/vendor/assets/javascripts/ace/mode-xml.js +350 -242
- data/vendor/assets/javascripts/ace/mode-xquery.js +2490 -300
- data/vendor/assets/javascripts/ace/mode-yaml.js +146 -45
- data/vendor/assets/javascripts/ace/theme-ambiance.js +202 -0
- data/vendor/assets/javascripts/ace/theme-chaos.js +179 -0
- data/vendor/assets/javascripts/ace/theme-chrome.js +97 -153
- data/vendor/assets/javascripts/ace/theme-clouds.js +78 -119
- data/vendor/assets/javascripts/ace/theme-clouds_midnight.js +79 -120
- data/vendor/assets/javascripts/ace/theme-cobalt.js +89 -140
- data/vendor/assets/javascripts/ace/theme-crimson_editor.js +93 -145
- data/vendor/assets/javascripts/ace/theme-dawn.js +84 -143
- data/vendor/assets/javascripts/ace/theme-dreamweaver.js +99 -162
- data/vendor/assets/javascripts/ace/theme-eclipse.js +78 -111
- data/vendor/assets/javascripts/ace/theme-github.js +70 -121
- data/vendor/assets/javascripts/ace/theme-idle_fingers.js +75 -134
- data/vendor/assets/javascripts/ace/theme-kr.js +135 -0
- data/vendor/assets/javascripts/ace/theme-merbivore.js +80 -143
- data/vendor/assets/javascripts/ace/theme-merbivore_soft.js +81 -149
- data/vendor/assets/javascripts/ace/theme-mono_industrial.js +87 -146
- data/vendor/assets/javascripts/ace/theme-monokai.js +88 -146
- data/vendor/assets/javascripts/ace/theme-pastel_on_dark.js +82 -142
- data/vendor/assets/javascripts/ace/theme-solarized_dark.js +83 -144
- data/vendor/assets/javascripts/ace/theme-solarized_light.js +76 -133
- data/vendor/assets/javascripts/ace/theme-terminal.js +145 -0
- data/vendor/assets/javascripts/ace/theme-textmate.js +101 -158
- data/vendor/assets/javascripts/ace/theme-tomorrow.js +89 -163
- data/vendor/assets/javascripts/ace/theme-tomorrow_night.js +89 -163
- data/vendor/assets/javascripts/ace/theme-tomorrow_night_blue.js +89 -165
- data/vendor/assets/javascripts/ace/theme-tomorrow_night_bright.js +101 -162
- data/vendor/assets/javascripts/ace/theme-tomorrow_night_eighties.js +90 -160
- data/vendor/assets/javascripts/ace/theme-twilight.js +87 -158
- data/vendor/assets/javascripts/ace/theme-vibrant_ink.js +75 -140
- data/vendor/assets/javascripts/ace/theme-xcode.js +120 -0
- data/vendor/assets/javascripts/ace/worker-coffee.js +3049 -2665
- data/vendor/assets/javascripts/ace/worker-css.js +1779 -4376
- data/vendor/assets/javascripts/ace/worker-javascript.js +8701 -9008
- data/vendor/assets/javascripts/ace/worker-json.js +709 -1340
- data/vendor/assets/javascripts/ace/worker-lua.js +3525 -0
- data/vendor/assets/javascripts/ace/worker-php.js +6893 -0
- data/vendor/assets/javascripts/ace/worker-xquery.js +19924 -64507
- metadata +100 -17
@@ -1,213 +1,137 @@
|
|
1
1
|
/* ***** BEGIN LICENSE BLOCK *****
|
2
|
-
*
|
2
|
+
* Distributed under the BSD license:
|
3
3
|
*
|
4
|
-
*
|
5
|
-
*
|
6
|
-
* the License. You may obtain a copy of the License at
|
7
|
-
* http://www.mozilla.org/MPL/
|
4
|
+
* Copyright (c) 2010, Ajax.org B.V.
|
5
|
+
* All rights reserved.
|
8
6
|
*
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
*
|
17
|
-
*
|
18
|
-
*
|
19
|
-
*
|
20
|
-
*
|
21
|
-
*
|
22
|
-
*
|
23
|
-
*
|
24
|
-
*
|
25
|
-
*
|
26
|
-
*
|
27
|
-
*
|
28
|
-
*
|
29
|
-
*
|
30
|
-
* use your version of this file under the terms of the MPL, indicate your
|
31
|
-
* decision by deleting the provisions above and replace them with the notice
|
32
|
-
* and other provisions required by the GPL or the LGPL. If you do not delete
|
33
|
-
* the provisions above, a recipient may use your version of this file under
|
34
|
-
* the terms of any one of the MPL, the GPL or the LGPL.
|
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.
|
35
28
|
*
|
36
29
|
* ***** END LICENSE BLOCK ***** */
|
37
30
|
|
38
|
-
define('ace/theme/tomorrow_night_blue', ['require', 'exports', 'module', 'ace/lib/dom'], function(require, exports, module) {
|
31
|
+
define('ace/theme/tomorrow_night_blue', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
|
39
32
|
|
40
33
|
exports.isDark = true;
|
41
34
|
exports.cssClass = "ace-tomorrow-night-blue";
|
42
|
-
exports.cssText = "\
|
43
|
-
|
44
|
-
|
45
|
-
}\
|
46
|
-
\
|
47
|
-
.ace-tomorrow-night-blue .ace_editor.ace_focus {\
|
48
|
-
border: 2px solid #327fbd;\
|
49
|
-
}\
|
50
|
-
\
|
51
|
-
.ace-tomorrow-night-blue .ace_gutter {\
|
52
|
-
background: #00204b;\
|
53
|
-
color: #7388b5;\
|
35
|
+
exports.cssText = ".ace-tomorrow-night-blue .ace_gutter {\
|
36
|
+
background: #00204b;\
|
37
|
+
color: #7388b5\
|
54
38
|
}\
|
55
|
-
\
|
56
|
-
|
57
|
-
|
58
|
-
background: #00204b;\
|
39
|
+
.ace-tomorrow-night-blue .ace_print-margin {\
|
40
|
+
width: 1px;\
|
41
|
+
background: #00204b\
|
59
42
|
}\
|
60
|
-
\
|
61
|
-
|
62
|
-
|
43
|
+
.ace-tomorrow-night-blue {\
|
44
|
+
background-color: #002451;\
|
45
|
+
color: #FFFFFF\
|
63
46
|
}\
|
64
|
-
|
65
|
-
.ace-tomorrow-night-blue .ace_text-layer {\
|
66
|
-
color: #FFFFFF;\
|
67
|
-
}\
|
68
|
-
\
|
47
|
+
.ace-tomorrow-night-blue .ace_constant.ace_other,\
|
69
48
|
.ace-tomorrow-night-blue .ace_cursor {\
|
70
|
-
|
71
|
-
}\
|
72
|
-
\
|
73
|
-
.ace-tomorrow-night-blue .ace_cursor.ace_overwrite {\
|
74
|
-
border-left: 0px;\
|
75
|
-
border-bottom: 1px solid #FFFFFF;\
|
49
|
+
color: #FFFFFF\
|
76
50
|
}\
|
77
|
-
\
|
78
51
|
.ace-tomorrow-night-blue .ace_marker-layer .ace_selection {\
|
79
|
-
|
52
|
+
background: #003F8E\
|
80
53
|
}\
|
81
|
-
\
|
82
|
-
|
83
|
-
|
84
|
-
border-radius: 2px;\
|
54
|
+
.ace-tomorrow-night-blue.ace_multiselect .ace_selection.ace_start {\
|
55
|
+
box-shadow: 0 0 3px 0px #002451;\
|
56
|
+
border-radius: 2px\
|
85
57
|
}\
|
86
|
-
\
|
87
58
|
.ace-tomorrow-night-blue .ace_marker-layer .ace_step {\
|
88
|
-
|
59
|
+
background: rgb(127, 111, 19)\
|
89
60
|
}\
|
90
|
-
\
|
91
61
|
.ace-tomorrow-night-blue .ace_marker-layer .ace_bracket {\
|
92
|
-
|
93
|
-
|
62
|
+
margin: -1px 0 0 -1px;\
|
63
|
+
border: 1px solid #404F7D\
|
94
64
|
}\
|
95
|
-
\
|
96
|
-
|
97
|
-
background: #00346E;\
|
65
|
+
.ace-tomorrow-night-blue .ace_marker-layer .ace_active-line {\
|
66
|
+
background: #00346E\
|
98
67
|
}\
|
99
|
-
\
|
100
|
-
|
101
|
-
background-color: #022040;\
|
68
|
+
.ace-tomorrow-night-blue .ace_gutter-active-line {\
|
69
|
+
background-color: #022040\
|
102
70
|
}\
|
103
|
-
\
|
104
|
-
|
105
|
-
border: 1px solid #003F8E;\
|
71
|
+
.ace-tomorrow-night-blue .ace_marker-layer .ace_selected-word {\
|
72
|
+
border: 1px solid #003F8E\
|
106
73
|
}\
|
107
|
-
\
|
108
74
|
.ace-tomorrow-night-blue .ace_invisible {\
|
109
|
-
|
75
|
+
color: #404F7D\
|
110
76
|
}\
|
111
|
-
|
112
|
-
.ace-tomorrow-night-blue .
|
113
|
-
|
77
|
+
.ace-tomorrow-night-blue .ace_keyword,\
|
78
|
+
.ace-tomorrow-night-blue .ace_meta,\
|
79
|
+
.ace-tomorrow-night-blue .ace_storage,\
|
80
|
+
.ace-tomorrow-night-blue .ace_storage.ace_type,\
|
81
|
+
.ace-tomorrow-night-blue .ace_support.ace_type {\
|
82
|
+
color: #EBBBFF\
|
114
83
|
}\
|
115
|
-
\
|
116
84
|
.ace-tomorrow-night-blue .ace_keyword.ace_operator {\
|
117
|
-
|
118
|
-
}\
|
119
|
-
\
|
120
|
-
.ace-tomorrow-night-blue .ace_constant.ace_language {\
|
121
|
-
color:#FFC58F;\
|
85
|
+
color: #99FFFF\
|
122
86
|
}\
|
123
|
-
|
124
|
-
.ace-tomorrow-night-blue .ace_constant.
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
.ace-tomorrow-night-blue .
|
129
|
-
|
87
|
+
.ace-tomorrow-night-blue .ace_constant.ace_character,\
|
88
|
+
.ace-tomorrow-night-blue .ace_constant.ace_language,\
|
89
|
+
.ace-tomorrow-night-blue .ace_constant.ace_numeric,\
|
90
|
+
.ace-tomorrow-night-blue .ace_keyword.ace_other.ace_unit,\
|
91
|
+
.ace-tomorrow-night-blue .ace_support.ace_constant,\
|
92
|
+
.ace-tomorrow-night-blue .ace_variable.ace_parameter {\
|
93
|
+
color: #FFC58F\
|
130
94
|
}\
|
131
|
-
\
|
132
95
|
.ace-tomorrow-night-blue .ace_invalid {\
|
133
|
-
|
134
|
-
background-color
|
96
|
+
color: #FFFFFF;\
|
97
|
+
background-color: #F99DA5\
|
135
98
|
}\
|
136
|
-
\
|
137
99
|
.ace-tomorrow-night-blue .ace_invalid.ace_deprecated {\
|
138
|
-
|
139
|
-
background-color
|
140
|
-
}\
|
141
|
-
\
|
142
|
-
.ace-tomorrow-night-blue .ace_support.ace_constant {\
|
143
|
-
color:#FFC58F;\
|
100
|
+
color: #FFFFFF;\
|
101
|
+
background-color: #EBBBFF\
|
144
102
|
}\
|
145
|
-
\
|
146
103
|
.ace-tomorrow-night-blue .ace_fold {\
|
147
|
-
|
148
|
-
|
104
|
+
background-color: #BBDAFF;\
|
105
|
+
border-color: #FFFFFF\
|
149
106
|
}\
|
150
|
-
|
151
|
-
.ace-tomorrow-night-blue .ace_support.ace_function
|
152
|
-
color:#BBDAFF;\
|
153
|
-
}\
|
154
|
-
\
|
155
|
-
.ace-tomorrow-night-blue .ace_storage {\
|
156
|
-
color:#EBBBFF;\
|
157
|
-
}\
|
158
|
-
\
|
159
|
-
.ace-tomorrow-night-blue .ace_storage.ace_type, .ace-tomorrow-night-blue .ace_support.ace_type{\
|
160
|
-
color:#EBBBFF;\
|
161
|
-
}\
|
162
|
-
\
|
107
|
+
.ace-tomorrow-night-blue .ace_entity.ace_name.ace_function,\
|
108
|
+
.ace-tomorrow-night-blue .ace_support.ace_function,\
|
163
109
|
.ace-tomorrow-night-blue .ace_variable {\
|
164
|
-
|
110
|
+
color: #BBDAFF\
|
165
111
|
}\
|
166
|
-
|
167
|
-
.ace-tomorrow-night-blue .
|
168
|
-
|
112
|
+
.ace-tomorrow-night-blue .ace_support.ace_class,\
|
113
|
+
.ace-tomorrow-night-blue .ace_support.ace_type {\
|
114
|
+
color: #FFEEAD\
|
169
115
|
}\
|
170
|
-
|
116
|
+
.ace-tomorrow-night-blue .ace_heading,\
|
117
|
+
.ace-tomorrow-night-blue .ace_markup.ace_heading,\
|
171
118
|
.ace-tomorrow-night-blue .ace_string {\
|
172
|
-
|
173
|
-
}\
|
174
|
-
\
|
175
|
-
.ace-tomorrow-night-blue .ace_string.ace_regexp {\
|
176
|
-
color:#FF9DA4;\
|
177
|
-
}\
|
178
|
-
\
|
179
|
-
.ace-tomorrow-night-blue .ace_comment {\
|
180
|
-
color:#7285B7;\
|
119
|
+
color: #D1F1A9\
|
181
120
|
}\
|
182
|
-
|
121
|
+
.ace-tomorrow-night-blue .ace_entity.ace_name.ace_tag,\
|
122
|
+
.ace-tomorrow-night-blue .ace_entity.ace_other.ace_attribute-name,\
|
123
|
+
.ace-tomorrow-night-blue .ace_meta.ace_tag,\
|
124
|
+
.ace-tomorrow-night-blue .ace_string.ace_regexp,\
|
183
125
|
.ace-tomorrow-night-blue .ace_variable {\
|
184
|
-
|
185
|
-
}\
|
186
|
-
\
|
187
|
-
.ace-tomorrow-night-blue .ace_meta.ace_tag {\
|
188
|
-
color:#FF9DA4;\
|
189
|
-
}\
|
190
|
-
\
|
191
|
-
.ace-tomorrow-night-blue .ace_entity.ace_other.ace_attribute-name {\
|
192
|
-
color:#FF9DA4;\
|
126
|
+
color: #FF9DA4\
|
193
127
|
}\
|
194
|
-
\
|
195
|
-
|
196
|
-
color:#BBDAFF;\
|
197
|
-
}\
|
198
|
-
\
|
199
|
-
.ace-tomorrow-night-blue .ace_markup.ace_underline {\
|
200
|
-
text-decoration:underline;\
|
201
|
-
}\
|
202
|
-
\
|
203
|
-
.ace-tomorrow-night-blue .ace_markup.ace_heading {\
|
204
|
-
color:#D1F1A9;\
|
128
|
+
.ace-tomorrow-night-blue .ace_comment {\
|
129
|
+
color: #7285B7\
|
205
130
|
}\
|
206
|
-
\
|
207
131
|
.ace-tomorrow-night-blue .ace_indent-guide {\
|
208
|
-
|
132
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYJDzqfwPAANXAeNsiA+ZAAAAAElFTkSuQmCC) right repeat-y\
|
209
133
|
}";
|
210
134
|
|
211
|
-
|
212
|
-
|
135
|
+
var dom = require("../lib/dom");
|
136
|
+
dom.importCssString(exports.cssText, exports.cssClass);
|
213
137
|
});
|
@@ -1,213 +1,152 @@
|
|
1
1
|
/* ***** BEGIN LICENSE BLOCK *****
|
2
|
-
*
|
2
|
+
* Distributed under the BSD license:
|
3
3
|
*
|
4
|
-
*
|
5
|
-
*
|
6
|
-
* the License. You may obtain a copy of the License at
|
7
|
-
* http://www.mozilla.org/MPL/
|
4
|
+
* Copyright (c) 2010, Ajax.org B.V.
|
5
|
+
* All rights reserved.
|
8
6
|
*
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
*
|
17
|
-
*
|
18
|
-
*
|
19
|
-
*
|
20
|
-
*
|
21
|
-
*
|
22
|
-
*
|
23
|
-
*
|
24
|
-
*
|
25
|
-
*
|
26
|
-
*
|
27
|
-
*
|
28
|
-
*
|
29
|
-
*
|
30
|
-
* use your version of this file under the terms of the MPL, indicate your
|
31
|
-
* decision by deleting the provisions above and replace them with the notice
|
32
|
-
* and other provisions required by the GPL or the LGPL. If you do not delete
|
33
|
-
* the provisions above, a recipient may use your version of this file under
|
34
|
-
* the terms of any one of the MPL, the GPL or the LGPL.
|
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.
|
35
28
|
*
|
36
29
|
* ***** END LICENSE BLOCK ***** */
|
37
30
|
|
38
|
-
define('ace/theme/tomorrow_night_bright', ['require', 'exports', 'module', 'ace/lib/dom'], function(require, exports, module) {
|
31
|
+
define('ace/theme/tomorrow_night_bright', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
|
39
32
|
|
40
33
|
exports.isDark = true;
|
41
34
|
exports.cssClass = "ace-tomorrow-night-bright";
|
42
|
-
exports.cssText = "\
|
43
|
-
|
44
|
-
|
45
|
-
}\
|
46
|
-
\
|
47
|
-
.ace-tomorrow-night-bright .ace_editor.ace_focus {\
|
48
|
-
border: 2px solid #327fbd;\
|
49
|
-
}\
|
50
|
-
\
|
51
|
-
.ace-tomorrow-night-bright .ace_gutter {\
|
52
|
-
background: #1a1a1a;\
|
53
|
-
color: #DEDEDE;\
|
35
|
+
exports.cssText = ".ace-tomorrow-night-bright .ace_gutter {\
|
36
|
+
background: #1a1a1a;\
|
37
|
+
color: #DEDEDE\
|
54
38
|
}\
|
55
|
-
\
|
56
|
-
|
57
|
-
|
58
|
-
background: #1a1a1a;\
|
39
|
+
.ace-tomorrow-night-bright .ace_print-margin {\
|
40
|
+
width: 1px;\
|
41
|
+
background: #1a1a1a\
|
59
42
|
}\
|
60
|
-
\
|
61
|
-
|
62
|
-
|
43
|
+
.ace-tomorrow-night-bright {\
|
44
|
+
background-color: #000000;\
|
45
|
+
color: #DEDEDE\
|
63
46
|
}\
|
64
|
-
\
|
65
|
-
.ace-tomorrow-night-bright .ace_text-layer {\
|
66
|
-
color: #DEDEDE;\
|
67
|
-
}\
|
68
|
-
\
|
69
47
|
.ace-tomorrow-night-bright .ace_cursor {\
|
70
|
-
|
71
|
-
}\
|
72
|
-
\
|
73
|
-
.ace-tomorrow-night-bright .ace_cursor.ace_overwrite {\
|
74
|
-
border-left: 0px;\
|
75
|
-
border-bottom: 1px solid #9F9F9F;\
|
48
|
+
color: #9F9F9F\
|
76
49
|
}\
|
77
|
-
\
|
78
50
|
.ace-tomorrow-night-bright .ace_marker-layer .ace_selection {\
|
79
|
-
|
51
|
+
background: #424242\
|
80
52
|
}\
|
81
|
-
\
|
82
|
-
|
83
|
-
|
84
|
-
border-radius: 2px;\
|
53
|
+
.ace-tomorrow-night-bright.ace_multiselect .ace_selection.ace_start {\
|
54
|
+
box-shadow: 0 0 3px 0px #000000;\
|
55
|
+
border-radius: 2px\
|
85
56
|
}\
|
86
|
-
\
|
87
57
|
.ace-tomorrow-night-bright .ace_marker-layer .ace_step {\
|
88
|
-
|
58
|
+
background: rgb(102, 82, 0)\
|
89
59
|
}\
|
90
|
-
\
|
91
60
|
.ace-tomorrow-night-bright .ace_marker-layer .ace_bracket {\
|
92
|
-
|
93
|
-
|
61
|
+
margin: -1px 0 0 -1px;\
|
62
|
+
border: 1px solid #888888\
|
63
|
+
}\
|
64
|
+
.ace-tomorrow-night-bright .ace_marker-layer .ace_highlight {\
|
65
|
+
border: 1px solid rgb(110, 119, 0);\
|
66
|
+
border-bottom: 0;\
|
67
|
+
box-shadow: inset 0 -1px rgb(110, 119, 0);\
|
68
|
+
margin: -1px 0 0 -1px;\
|
69
|
+
background: rgba(255, 235, 0, 0.1);\
|
94
70
|
}\
|
95
|
-
\
|
96
|
-
|
97
|
-
background: #2A2A2A;\
|
71
|
+
.ace-tomorrow-night-bright .ace_marker-layer .ace_active-line {\
|
72
|
+
background: #2A2A2A\
|
98
73
|
}\
|
99
|
-
\
|
100
|
-
|
101
|
-
background-color: #2A2A2A;\
|
74
|
+
.ace-tomorrow-night-bright .ace_gutter-active-line {\
|
75
|
+
background-color: #2A2A2A\
|
102
76
|
}\
|
103
|
-
\
|
104
|
-
|
105
|
-
|
77
|
+
.ace-tomorrow-night-bright .ace_stack {\
|
78
|
+
background-color: rgb(66, 90, 44)\
|
79
|
+
}\
|
80
|
+
.ace-tomorrow-night-bright .ace_marker-layer .ace_selected-word {\
|
81
|
+
border: 1px solid #888888\
|
106
82
|
}\
|
107
|
-
\
|
108
83
|
.ace-tomorrow-night-bright .ace_invisible {\
|
109
|
-
|
84
|
+
color: #343434\
|
110
85
|
}\
|
111
|
-
|
112
|
-
.ace-tomorrow-night-bright .
|
113
|
-
|
86
|
+
.ace-tomorrow-night-bright .ace_keyword,\
|
87
|
+
.ace-tomorrow-night-bright .ace_meta,\
|
88
|
+
.ace-tomorrow-night-bright .ace_storage,\
|
89
|
+
.ace-tomorrow-night-bright .ace_storage.ace_type,\
|
90
|
+
.ace-tomorrow-night-bright .ace_support.ace_type {\
|
91
|
+
color: #C397D8\
|
114
92
|
}\
|
115
|
-
\
|
116
93
|
.ace-tomorrow-night-bright .ace_keyword.ace_operator {\
|
117
|
-
|
118
|
-
}\
|
119
|
-
\
|
120
|
-
.ace-tomorrow-night-bright .ace_constant.ace_language {\
|
121
|
-
color:#E78C45;\
|
94
|
+
color: #70C0B1\
|
122
95
|
}\
|
123
|
-
|
124
|
-
.ace-tomorrow-night-bright .ace_constant.
|
125
|
-
|
96
|
+
.ace-tomorrow-night-bright .ace_constant.ace_character,\
|
97
|
+
.ace-tomorrow-night-bright .ace_constant.ace_language,\
|
98
|
+
.ace-tomorrow-night-bright .ace_constant.ace_numeric,\
|
99
|
+
.ace-tomorrow-night-bright .ace_keyword.ace_other.ace_unit,\
|
100
|
+
.ace-tomorrow-night-bright .ace_support.ace_constant,\
|
101
|
+
.ace-tomorrow-night-bright .ace_variable.ace_parameter {\
|
102
|
+
color: #E78C45\
|
126
103
|
}\
|
127
|
-
\
|
128
104
|
.ace-tomorrow-night-bright .ace_constant.ace_other {\
|
129
|
-
|
105
|
+
color: #EEEEEE\
|
130
106
|
}\
|
131
|
-
\
|
132
107
|
.ace-tomorrow-night-bright .ace_invalid {\
|
133
|
-
|
134
|
-
background-color
|
108
|
+
color: #CED2CF;\
|
109
|
+
background-color: #DF5F5F\
|
135
110
|
}\
|
136
|
-
\
|
137
111
|
.ace-tomorrow-night-bright .ace_invalid.ace_deprecated {\
|
138
|
-
|
139
|
-
background-color
|
112
|
+
color: #CED2CF;\
|
113
|
+
background-color: #B798BF\
|
140
114
|
}\
|
141
|
-
\
|
142
|
-
.ace-tomorrow-night-bright .ace_support.ace_constant {\
|
143
|
-
color:#E78C45;\
|
144
|
-
}\
|
145
|
-
\
|
146
115
|
.ace-tomorrow-night-bright .ace_fold {\
|
147
|
-
|
148
|
-
|
149
|
-
}\
|
150
|
-
\
|
151
|
-
.ace-tomorrow-night-bright .ace_support.ace_function {\
|
152
|
-
color:#7AA6DA;\
|
153
|
-
}\
|
154
|
-
\
|
155
|
-
.ace-tomorrow-night-bright .ace_storage {\
|
156
|
-
color:#C397D8;\
|
116
|
+
background-color: #7AA6DA;\
|
117
|
+
border-color: #DEDEDE\
|
157
118
|
}\
|
158
|
-
|
159
|
-
.ace-tomorrow-night-bright .
|
160
|
-
color:#C397D8;\
|
161
|
-
}\
|
162
|
-
\
|
119
|
+
.ace-tomorrow-night-bright .ace_entity.ace_name.ace_function,\
|
120
|
+
.ace-tomorrow-night-bright .ace_support.ace_function,\
|
163
121
|
.ace-tomorrow-night-bright .ace_variable {\
|
164
|
-
|
122
|
+
color: #7AA6DA\
|
165
123
|
}\
|
166
|
-
|
167
|
-
.ace-tomorrow-night-bright .
|
168
|
-
|
124
|
+
.ace-tomorrow-night-bright .ace_support.ace_class,\
|
125
|
+
.ace-tomorrow-night-bright .ace_support.ace_type {\
|
126
|
+
color: #E7C547\
|
169
127
|
}\
|
170
|
-
|
128
|
+
.ace-tomorrow-night-bright .ace_heading,\
|
129
|
+
.ace-tomorrow-night-bright .ace_markup.ace_heading,\
|
171
130
|
.ace-tomorrow-night-bright .ace_string {\
|
172
|
-
|
173
|
-
}\
|
174
|
-
\
|
175
|
-
.ace-tomorrow-night-bright .ace_string.ace_regexp {\
|
176
|
-
color:#D54E53;\
|
131
|
+
color: #B9CA4A\
|
177
132
|
}\
|
178
|
-
|
179
|
-
.ace-tomorrow-night-bright .
|
180
|
-
|
181
|
-
|
182
|
-
\
|
133
|
+
.ace-tomorrow-night-bright .ace_entity.ace_name.ace_tag,\
|
134
|
+
.ace-tomorrow-night-bright .ace_entity.ace_other.ace_attribute-name,\
|
135
|
+
.ace-tomorrow-night-bright .ace_meta.ace_tag,\
|
136
|
+
.ace-tomorrow-night-bright .ace_string.ace_regexp,\
|
183
137
|
.ace-tomorrow-night-bright .ace_variable {\
|
184
|
-
|
185
|
-
}\
|
186
|
-
\
|
187
|
-
.ace-tomorrow-night-bright .ace_meta.ace_tag {\
|
188
|
-
color:#D54E53;\
|
138
|
+
color: #D54E53\
|
189
139
|
}\
|
190
|
-
\
|
191
|
-
|
192
|
-
color:#D54E53;\
|
193
|
-
}\
|
194
|
-
\
|
195
|
-
.ace-tomorrow-night-bright .ace_entity.ace_name.ace_function {\
|
196
|
-
color:#7AA6DA;\
|
197
|
-
}\
|
198
|
-
\
|
199
|
-
.ace-tomorrow-night-bright .ace_markup.ace_underline {\
|
200
|
-
text-decoration:underline;\
|
140
|
+
.ace-tomorrow-night-bright .ace_comment {\
|
141
|
+
color: #969896\
|
201
142
|
}\
|
202
|
-
\
|
203
|
-
|
204
|
-
color:#B9CA4A;\
|
143
|
+
.ace-tomorrow-night-bright .ace_c9searchresults.ace_keyword {\
|
144
|
+
color: #C2C280;\
|
205
145
|
}\
|
206
|
-
\
|
207
146
|
.ace-tomorrow-night-bright .ace_indent-guide {\
|
208
|
-
|
147
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYFBXV/8PAAJoAXX4kT2EAAAAAElFTkSuQmCC) right repeat-y\
|
209
148
|
}";
|
210
149
|
|
211
|
-
|
212
|
-
|
150
|
+
var dom = require("../lib/dom");
|
151
|
+
dom.importCssString(exports.cssText, exports.cssClass);
|
213
152
|
});
|