-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Add @sourceFontFamily LESS variable and use instead of SourceCodePro font-family #10727
Conversation
I was actually going to do this as part of #8985, but it's probably better to submit it separately so it doesn't take as long to merge. :) |
Sigh... shame there are all those separate references in core extensions. @humphd I think for now you'll have to live with just having more diffs in your fork than you'd like... unless you feel like biting off the work of getting extensions' LESS to compile in the context of the Brackets core LESS (or at least with a variable declarations file that's shared between them). That would significantly simplify the dark/light theming too, so it's definitely worth doing... but it's also a lot more work than just adding a dozen extra 1-line diffs on your end :-) The code changes here look ok to me though. Just one thought: what about the |
(Link: the card RESEARCH: Theming improvements & maintainability discusses shared LESS vars briefly, but it covers a lot of other ground too) |
@peterflynn thanks for reviewing. I agree that it's not worth shaving the "extensions' LESS" yak just to do this change. I'll do another commit for the |
@peterflynn: Updated, ready for another look. |
Looks good. |
Add `@sourceFontFamily` LESS variable and use instead of SourceCodePro font-family
Awesome, thanks for the help with this, and for landing it so quickly. |
FYI, doing follow-up work with this on our branch, I found one more use of |
Oh that's an interesting rule, too: it relies on two windows-specific fonts (which used to require installing asian languages, but I don't think that's true anymore?) without rules for what to load on OSX and Linux |
In my Brackets fork, I've been discussing ways to save on download size for the in-browser use case. @peterflynn and I discussed making it easier to turn off the use of the Source Code/Sans Pro web fonts in favour of system fonts (it ends up saving me about ~300K of gzipped download, which is great), see https://github.com/humphd/brackets/issues/78.
I've made a start at this, switching all explicit uses of these
font-family
s to variables. I'm unclear how much more I can do than this, since all of the other occurrences of these are in extension LESS/CSS files, and I don't think these have access to the variables in Brackets (correct me if I'm wrong and can change there too)?Anything else I can do here? I'm not sure how to deal with the explicit use in extensions, especially when I rip out that font-family for the in-browser case.
cc @Pomax