forked from c9/cloud9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeeditor.xml
More file actions
137 lines (115 loc) · 3.28 KB
/
Copy pathcodeeditor.xml
File metadata and controls
137 lines (115 loc) · 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<a:skin xmlns:a="http://ajax.org/2005/aml"><a:codeeditor name="codeeditor">
<a:style><![CDATA[
.ace_editor {
position: relative;
overflow: hidden;
}
.ace_scroller {
position: absolute;
overflow-x: scroll;
overflow-y: hidden;
background-color: #fbfbfb;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-topleft: 6px;
border-top-left-radius: 6px;
top: 0;
bottom: 0
}
.ace_gutter {
position: absolute;
overflow-x: scroll;
overflow-y: hidden;
height: 100%;
}
.ace_editor .ace_sb {
position: absolute;
overflow-x: hidden;
overflow-y: scroll;
right: 0;
}
.ace_editor .ace_sb div {
position: absolute;
width: 1px;
left: 0px;
}
.ace_editor .ace_printMargin {
position: absolute;
height: 100%;
width: 1px;
background-color: rgb(191, 191, 191);
}
.ace_layer {
z-index: 0;
position: absolute;
overflow: hidden;
white-space: nowrap;
height: 100%;
}
.ace_text-layer {
font-family: Monaco, "Courier New", monospace;
color: black;
}
.ace_cursor-layer {
cursor: text;
}
.ace_cursor {
z-index: 3;
position: absolute;
}
.ace_line {
white-space: nowrap;
}
.ace_marker-layer {
}
.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {
position: absolute;
z-index: 2;
}
.ace_marker-layer .ace_selection {
position: absolute;
z-index: 3;
}
.ace_marker-layer .ace_bracket {
position: absolute;
z-index: 4;
}
.ace_marker-layer .ace_active_line {
position: absolute;
z-index: 1;
}
.ceDisabled {
border: 1px solid #c3c3c3;
color: #bebebe;
}
.ceError{
border: 1px solid #ffb500;
padding : 5px;
}
/*** TM ***/
.ace_gutter-layer .ace_gutter-cell.ace_breakpoint {
background-image: url("icons/debugger/brkp_obj.png");
background-repeat: no-repeat;
background-position: 2px center;
}
.ace_gutter-layer .ace_gutter-cell.ace_breakpoint.ace_arrow {
background-image: url("icons/debugger/brkp_obj_current_line.png");
background-repeat: no-repeat;
background-position: 2px center;
}
.ace_gutter-layer .ace_gutter-cell.ace_arrow {
background-image: url("icons/debugger/current_line.png");
background-repeat: no-repeat;
background-position: 2px center;
}
.ace_gutter-layer .ace_gutter-cell.ace_stack {
background-image: url("icons/debugger/stack_co.png");
background-repeat: no-repeat;
background-position: 2px center;
}
]]></a:style>
<a:presentation>
<a:main content=".">
<div class="ce"> </div>
</a:main>
</a:presentation>
</a:codeeditor></a:skin>