Created
July 15, 2016 22:15
-
-
Save jmsfwk/acea651c117318051efcc83cbe165886 to your computer and use it in GitHub Desktop.
Atom styles for Monoisome in html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
atom-text-editor { | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
-webkit-font-feature-settings: "liga" on, "calt" on; | |
} | |
atom-text-editor[data-grammar*="text html"] { | |
font-family: Monoisome; | |
} | |
atom-text-editor::shadow .string.quoted, | |
atom-text-editor::shadow .string.regexp { | |
-webkit-font-feature-settings: "liga" off, "calt" off; | |
} | |
[data-grammar*="text html"]::shadow .string.quoted { | |
-webkit-font-smoothing: antialiased; | |
-webkit-font-feature-settings: "liga" on, "calt" on; | |
} | |
atom-text-editor[data-grammar*="text html"]::shadow { | |
.cursor-line, | |
.cursor-line .string.quoted{ | |
-webkit-font-feature-settings: "liga" off, "calt" off; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment