-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "bold" weight
, "italic" style
and "small-caps" variant
to fonts
#6956
Changes from 37 commits
351b98f
fe1acac
c278383
0e6a833
cc6308d
eddbda1
9e0ff17
666b10e
08041dc
4ff859f
acc71b2
f13d7b2
9a6f9c2
55ba43b
f4bc74e
2c39a8e
caad472
34f3d48
948689e
cf56d6e
2f8b4ed
d1e041b
151ebb0
6f0ecfa
9859bf0
1bbe369
9760db0
a29adb1
9caa963
75ef984
446a549
3892130
83f9408
8d84ea7
62bf5a2
e000763
2498045
bdb24cf
6095b93
28087ee
e75001d
7d3facf
dfd6a2e
2d7ba1d
238b7dc
44fb6a4
6409b5e
104d7fe
c9fc006
d8a59f9
5bbcd5d
7154f5e
e92e930
ba372e0
96f8166
68a0f66
e0f9811
3631d1a
6e367d6
7aae57b
dfe5670
f92ff86
eb82700
ff56034
888bf20
dd81225
3829ca9
50b8ccd
31e04de
673b33e
1097e34
369c95d
c90f098
a877179
cc28647
dfde4b1
3a624ab
a03ec91
1a6fc90
d0c583c
062c862
593717b
accb7b7
a040564
9a92474
1c02804
2fdb90c
8452e53
b8877ff
f4d4f4c
82b9181
0d38a5d
a631894
f963280
d048236
33591c2
9bfe8d1
3937f2f
3ac2fa1
21e187e
77c73ff
35a025a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,10 @@ module.exports = function handleAnnotationCommonDefaults(annIn, annOut, fullLayo | |
|
||
Lib.coerceFont(coerce, 'hoverlabel.font', { | ||
family: globalHoverLabel.font.family, | ||
weight: globalHoverLabel.font.weight, | ||
style: globalHoverLabel.font.style, | ||
stretch: globalHoverLabel.font.stretch, | ||
variant: globalHoverLabel.font.variant, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I suspect it would be simpler to use |
||
size: globalHoverLabel.font.size, | ||
color: globalHoverLabel.font.color || hoverBorder | ||
}); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gl-vis/gl-text#12