-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyles.less
32 lines (32 loc) · 1.21 KB
/
styles.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
atom-text-editor.editor {
/*
Transform selected text into alternative font for elegant touch:
- this
- HTML and JSX attributes
- JS functions (except arrow function)
- JS undefined
- JS storage (const/let/async)
- EX constants
- Ruby (nil/self/block)
- Ruby hash keys
*/
.syntax--variable.syntax--language.syntax--this,
.syntax--html > .syntax--attribute-name,
.syntax--JSXAttrs > .syntax--attribute-name,
.syntax--storage.syntax--type.syntax--js:not(.syntax--function):not(.syntax--arrow),
.syntax--constant.syntax--language.syntax--undefined.syntax--js,
.syntax--constant.syntax--other.syntax--object.syntax--key.syntax--js,
.syntax--variable.syntax--other.syntax--constant.syntax--elixir,
.syntax--constant.syntax--language.syntax--elixir,
.syntax--constant.syntax--language.syntax--nil.syntax--ruby,
.syntax--variable.syntax--language.syntax--self.syntax--ruby,
.syntax--constant.syntax--other.syntax--symbol.syntax--hashkey.syntax--ruby,
.syntax--variable.syntax--other.syntax--block.syntax--ruby {
vertical-align: baseline;
font-family: 'Script12 BT';
font-size: 120%;
font-style: normal !important;
height: inherit;
line-height: 100%;
}
}