ace/css/editor.css
2010-04-21 16:27:23 +02:00

74 lines
No EOL
922 B
CSS

.editor {
position: absolute;
overflow: hidden;
}
.scroller {
position: absolute;
overflow-x: scroll;
overflow-y: hidden;
}
.gutter {
position: absolute;
overflow-x: scroll;
overflow-y: hidden;
}
.editor .sb {
position: absolute;
overflow-x: hidden;
overflow-y: scroll;
right: 0;
}
.editor .sb div {
position: absolute;
width: 1px;
left: -10px;
}
.layer {
position: absolute;
overflow: hidden;
white-space: nowrap;
}
.text-layer {
z-index: 2;
font-family: Monaco, "Courier New", monospace;
cursor: text;
color: black;
}
.cursor-layer {
z-index: 3;
}
.cursor {
z-index: 3;
position: absolute;
}
.line {
white-space: nowrap;
}
.marker-layer {
z-index: 1;
}
.marker-layer .selection {
position: absolute;
z-index: 2;
}
.marker-layer .bracket {
position: absolute;
z-index: 3;
}
.marker-layer .active_line {
position: absolute;
z-index: 1;
}