express_admin 1.4.8 → 1.4.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,105 @@
1
+ define("ace/theme/github",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
2
+
3
+ exports.isDark = false;
4
+ exports.cssClass = "ace-github";
5
+ exports.cssText = "\
6
+ .ace-github .ace_gutter {\
7
+ background: #e8e8e8;\
8
+ color: #AAA;\
9
+ }\
10
+ .ace-github {\
11
+ background: #fff;\
12
+ color: #000;\
13
+ margin-bottom: 15px;\
14
+ }\
15
+ .ace-github .ace_keyword {\
16
+ font-weight: bold;\
17
+ }\
18
+ .ace-github .ace_string {\
19
+ color: #D14;\
20
+ }\
21
+ .ace-github .ace_variable.ace_class {\
22
+ color: teal;\
23
+ }\
24
+ .ace-github .ace_constant.ace_numeric {\
25
+ color: #099;\
26
+ }\
27
+ .ace-github .ace_constant.ace_buildin {\
28
+ color: #0086B3;\
29
+ }\
30
+ .ace-github .ace_support.ace_function {\
31
+ color: #0086B3;\
32
+ }\
33
+ .ace-github .ace_comment {\
34
+ color: #998;\
35
+ font-style: italic;\
36
+ }\
37
+ .ace-github .ace_variable.ace_language {\
38
+ color: #0086B3;\
39
+ }\
40
+ .ace-github .ace_paren {\
41
+ font-weight: bold;\
42
+ }\
43
+ .ace-github .ace_boolean {\
44
+ font-weight: bold;\
45
+ }\
46
+ .ace-github .ace_string.ace_regexp {\
47
+ color: #009926;\
48
+ font-weight: normal;\
49
+ }\
50
+ .ace-github .ace_variable.ace_instance {\
51
+ color: teal;\
52
+ }\
53
+ .ace-github .ace_constant.ace_language {\
54
+ font-weight: bold;\
55
+ }\
56
+ .ace-github .ace_cursor {\
57
+ color: black;\
58
+ }\
59
+ .ace-github.ace_focus .ace_marker-layer .ace_active-line {\
60
+ background: rgb(255, 255, 204);\
61
+ }\
62
+ .ace-github .ace_marker-layer .ace_active-line {\
63
+ background: rgb(245, 245, 245);\
64
+ }\
65
+ .ace-github .ace_marker-layer .ace_selection {\
66
+ background: rgb(181, 213, 255);\
67
+ }\
68
+ .ace-github.ace_multiselect .ace_selection.ace_start {\
69
+ box-shadow: 0 0 3px 0px white;\
70
+ border-radius: 2px;\
71
+ }\
72
+ .ace-github.ace_nobold .ace_line > span {\
73
+ font-weight: normal !important;\
74
+ }\
75
+ .ace-github .ace_marker-layer .ace_step {\
76
+ background: rgb(252, 255, 0);\
77
+ }\
78
+ .ace-github .ace_marker-layer .ace_stack {\
79
+ background: rgb(164, 229, 101);\
80
+ }\
81
+ .ace-github .ace_marker-layer .ace_bracket {\
82
+ margin: -1px 0 0 -1px;\
83
+ border: 1px solid rgb(192, 192, 192);\
84
+ }\
85
+ .ace-github .ace_gutter-active-line {\
86
+ background-color : rgba(0, 0, 0, 0.07);\
87
+ }\
88
+ .ace-github .ace_marker-layer .ace_selected-word {\
89
+ background: rgb(250, 250, 255);\
90
+ border: 1px solid rgb(200, 200, 250);\
91
+ }\
92
+ .ace-github .ace_invisible {\
93
+ color: #BFBFBF\
94
+ }\
95
+ .ace-github .ace_print-margin {\
96
+ width: 1px;\
97
+ background: #e8e8e8;\
98
+ }\
99
+ .ace-github .ace_indent-guide {\
100
+ background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
101
+ }";
102
+
103
+ var dom = require("../lib/dom");
104
+ dom.importCssString(exports.cssText, exports.cssClass);
105
+ });