73 lines
No EOL
920 B
CSS
73 lines
No EOL
920 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 .scrollbar {
|
|
position: absolute;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
right: 0;
|
|
}
|
|
|
|
.editor .scrollbar 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;
|
|
}
|
|
|
|
.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;
|
|
} |