60 lines
No EOL
739 B
CSS
60 lines
No EOL
739 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;
|
|
}
|
|
|
|
.layer {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.text-layer {
|
|
z-index: 2;
|
|
font-family: Monaco, "Courier New", monospace;
|
|
cursor: text;
|
|
}
|
|
|
|
.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;
|
|
} |