Skip to content

Commit

Permalink
unify css coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
fjakobs committed Feb 2, 2011
1 parent 16d803b commit 799aa97
Showing 1 changed file with 60 additions and 60 deletions.
120 changes: 60 additions & 60 deletions lib/ace/css/editor.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
.ace_editor {
position: absolute;
overflow: hidden;
position: absolute;
overflow: hidden;

font-family: "Menlo", "Monaco", "Courier New", monospace;
font-size: 12px;
font-family: "Menlo", "Monaco", "Courier New", monospace;
font-size: 12px;
}

.ace_scroller {
position: absolute;
overflow-x: scroll;
overflow-y: hidden;
position: absolute;
overflow-x: scroll;
overflow-y: hidden;
}

.ace_content {
Expand All @@ -27,10 +27,10 @@
}

.ace_gutter {
position: absolute;
overflow-x: hidden;
overflow-y: hidden;
height: 100%;
position: absolute;
overflow-x: hidden;
overflow-y: hidden;
height: 100%;
}

.ace_gutter-cell.ace_error {
Expand All @@ -46,59 +46,59 @@
}

.ace_editor .ace_sb {
position: absolute;
overflow-x: hidden;
overflow-y: scroll;
right: 0;
position: absolute;
overflow-x: hidden;
overflow-y: scroll;
right: 0;
}

.ace_editor .ace_sb div {
position: absolute;
width: 1px;
left: 0px;
position: absolute;
width: 1px;
left: 0;
}

.ace_editor .ace_print_margin_layer {
z-index: 0;
position: absolute;
overflow: hidden;
margin: 0px;
left: 0px;
height: 100%;
width: 100%;
z-index: 0;
position: absolute;
overflow: hidden;
margin: 0;
left: 0;
height: 100%;
width: 100%;
}

.ace_editor .ace_print_margin {
position: absolute;
height: 100%;
position: absolute;
height: 100%;
}

.ace_editor textarea {
position: fixed;
z-index: -1;
width: 10px;
height: 30px;
opacity: 0;
background: transparent;
appearance: none;
border: none;
resize: none;
outline: none;
overflow: hidden;
position: fixed;
z-index: -1;
width: 10px;
height: 30px;
opacity: 0;
background: transparent;
appearance: none;
border: none;
resize: none;
outline: none;
overflow: hidden;
}

.ace_layer {
z-index: 1;
position: absolute;
overflow: hidden;
white-space: nowrap;
height: 100%;
width: 100%;
z-index: 1;
position: absolute;
overflow: hidden;
white-space: nowrap;
height: 100%;
width: 100%;
}

.ace_text-layer {
font-family: Monaco, "Courier New", monospace;
color: black;
font-family: Monaco, "Courier New", monospace;
color: black;
}

.ace_cjk {
Expand All @@ -107,39 +107,39 @@
}

.ace_cursor-layer {
z-index: 4;
cursor: text;
pointer-events: none;
z-index: 4;
cursor: text;
pointer-events: none;
}

.ace_cursor {
z-index: 4;
position: absolute;
z-index: 4;
position: absolute;
}

.ace_line {
white-space: nowrap;
white-space: nowrap;
}

.ace_marker-layer {
}

.ace_marker-layer .ace_step {
position: absolute;
z-index: 3;
position: absolute;
z-index: 3;
}

.ace_marker-layer .ace_selection {
position: absolute;
z-index: 4;
position: absolute;
z-index: 4;
}

.ace_marker-layer .ace_bracket {
position: absolute;
z-index: 5;
position: absolute;
z-index: 5;
}

.ace_marker-layer .ace_active_line {
position: absolute;
z-index: 2;
position: absolute;
z-index: 2;
}

0 comments on commit 799aa97

Please sign in to comment.