Skip to content

Commit 1022f7c

Browse files
committed
Fix the .marker selector missed by apm convert
1 parent 47520c5 commit 1022f7c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ release:
55
apm init --theme .atom-build --convert Chromodynamics.tmTheme
66
cp .atom-build/styles/*.less styles/
77
rm -rf .atom-build
8-
cat styles/base.less | sed 's/syntax-wrap-guide-color;/syntax-wrap-guide-color;background-color:@syntax-wrap-guide-color !important;/g' > styles/base.less~
8+
cat styles/base.less | sed 's/syntax-wrap-guide-color;/syntax-wrap-guide-color;background-color:@syntax-wrap-guide-color !important;/g' | sed 's/atom-text-editor\(.*\).marker/atom-text-editor\1.syntax--marker/' > styles/base.less~
99
mv styles/base.less~ styles/base.less

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Chromodynamics",
33
"theme": "syntax",
4-
"version": "0.0.8",
4+
"version": "0.0.9",
55
"description": "Syntax Theme",
66
"repository": "https://github.com/MagicStack/Chromodynamics",
77
"license": "MIT",

styles/base.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ atom-text-editor .invisible-character {
3131
color: @syntax-invisible-character-color;
3232
}
3333

34-
atom-text-editor .search-results .marker .region {
34+
atom-text-editor .search-results .syntax--marker .region {
3535
background-color: transparent;
3636
border: @syntax-result-marker-color;
3737
}
3838

39-
atom-text-editor .search-results .marker.current-result .region {
39+
atom-text-editor .search-results .syntax--marker.current-result .region {
4040
border: @syntax-result-marker-color-selected;
4141
}
4242

0 commit comments

Comments
 (0)