Skip to content

Commit fe5aa98

Browse files
rename .start to .ace_start for selection markers
1 parent 0490b34 commit fe5aa98

25 files changed

Lines changed: 27 additions & 27 deletions

lib/ace/layer/marker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ var Marker = function(parentEl) {
9595
}
9696
else {
9797
this.drawSingleLineMarker(
98-
html, range, marker.clazz + " start", config,
98+
html, range, marker.clazz + " ace_start", config,
9999
null, marker.type
100100
);
101101
}
@@ -116,7 +116,7 @@ var Marker = function(parentEl) {
116116
row, range.start.column,
117117
row, this.session.getScreenLastRowColumn(row)
118118
);
119-
this.drawSingleLineMarker(stringBuilder, lineRange, clazz + " start", layerConfig, 1, "text");
119+
this.drawSingleLineMarker(stringBuilder, lineRange, clazz + " ace_start", layerConfig, 1, "text");
120120

121121
// selection end
122122
row = range.end.row;
@@ -140,7 +140,7 @@ var Marker = function(parentEl) {
140140
var left = Math.round(padding + range.start.column * config.characterWidth);
141141

142142
stringBuilder.push(
143-
"<div class='", clazz, " start' style='",
143+
"<div class='", clazz, " ace_start' style='",
144144
"height:", height, "px;",
145145
"right:0;",
146146
"top:", top, "px;",

lib/ace/theme/clouds.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
background: #BDD5FC
3838
}
3939

40-
.ace-clouds.ace_multiselect .ace_selection.start {
40+
.ace-clouds.ace_multiselect .ace_selection.ace_start {
4141
box-shadow: 0 0 3px 0px #FFFFFF;
4242
border-radius: 2px
4343
}

lib/ace/theme/clouds_midnight.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
background: #000000
3838
}
3939

40-
.ace-clouds-midnight.ace_multiselect .ace_selection.start {
40+
.ace-clouds-midnight.ace_multiselect .ace_selection.ace_start {
4141
box-shadow: 0 0 3px 0px #191919;
4242
border-radius: 2px
4343
}

lib/ace/theme/cobalt.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
background: rgba(179, 101, 57, 0.75)
3838
}
3939

40-
.ace-cobalt.ace_multiselect .ace_selection.start {
40+
.ace-cobalt.ace_multiselect .ace_selection.ace_start {
4141
box-shadow: 0 0 3px 0px #002240;
4242
border-radius: 2px
4343
}

lib/ace/theme/dawn.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
background: rgba(39, 95, 255, 0.30)
3838
}
3939

40-
.ace-dawn.ace_multiselect .ace_selection.start {
40+
.ace-dawn.ace_multiselect .ace_selection.ace_start {
4141
box-shadow: 0 0 3px 0px #F9F9F9;
4242
border-radius: 2px
4343
}

lib/ace/theme/github.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
.ace-github .ace_marker-layer .ace_selection {
9595
background: rgb(181, 213, 255);
9696
}
97-
.ace-github.ace_multiselect .ace_selection.start {
97+
.ace-github.ace_multiselect .ace_selection.ace_start {
9898
box-shadow: 0 0 3px 0px white;
9999
border-radius: 2px;
100100
}

lib/ace/theme/idle_fingers.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
background: rgba(90, 100, 126, 0.88)
3838
}
3939

40-
.ace-idle-fingers.ace_multiselect .ace_selection.start {
40+
.ace-idle-fingers.ace_multiselect .ace_selection.ace_start {
4141
box-shadow: 0 0 3px 0px #323232;
4242
border-radius: 2px
4343
}

lib/ace/theme/kr_theme.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
background: rgba(170, 0, 255, 0.45)
3838
}
3939

40-
.ace-kr-theme.ace_multiselect .ace_selection.start {
40+
.ace-kr-theme.ace_multiselect .ace_selection.ace_start {
4141
box-shadow: 0 0 3px 0px #0B0A09;
4242
border-radius: 2px
4343
}

lib/ace/theme/merbivore.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
background: #454545
3838
}
3939

40-
.ace-merbivore.ace_multiselect .ace_selection.start {
40+
.ace-merbivore.ace_multiselect .ace_selection.ace_start {
4141
box-shadow: 0 0 3px 0px #161616;
4242
border-radius: 2px
4343
}

lib/ace/theme/merbivore_soft.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
background: #494949
3838
}
3939

40-
.ace-merbivore-soft.ace_multiselect .ace_selection.start {
40+
.ace-merbivore-soft.ace_multiselect .ace_selection.ace_start {
4141
box-shadow: 0 0 3px 0px #1C1C1C;
4242
border-radius: 2px
4343
}

0 commit comments

Comments
 (0)