about summary refs log tree commit diff
path: root/app/javascript/styles/mastodon/variables.scss
diff options
context:
space:
mode:
authorSerCom_KC <SerCom-KC@users.noreply.github.com>2017-12-07 23:01:52 +0800
committerEugen Rochko <eugen@zeonfederated.com>2017-12-07 16:01:52 +0100
commita1fc626e57654810112856974c397da9d743d6be (patch)
tree0dbc7da44b4af135141a42f8ec6e395fc5633b87 /app/javascript/styles/mastodon/variables.scss
parent9a6fc0333295ded6b466b63807bcd5e7e57df169 (diff)
Fix font-weight of <strong> element for CJK fonts (#5914)
* Fix font-weight for CJK fonts

* Use `font-weight: 700;` for mobile support

* Fix indentation

* Remove trailing whitespace

* Remove trailing whitespace
Diffstat (limited to 'app/javascript/styles/mastodon/variables.scss')
-rw-r--r--app/javascript/styles/mastodon/variables.scss3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/variables.scss b/app/javascript/styles/mastodon/variables.scss
index 52c8cd1cf..0abb8d5ea 100644
--- a/app/javascript/styles/mastodon/variables.scss
+++ b/app/javascript/styles/mastodon/variables.scss
@@ -27,3 +27,6 @@ $ui-base-lighter-color: lighten($ui-base-color, 26%) !default; // Lighter darkes
 $ui-primary-color: $classic-primary-color !default;            // Lighter
 $ui-secondary-color: $classic-secondary-color !default;        // Lightest
 $ui-highlight-color: $classic-highlight-color !default;        // Vibrant
+
+// Language codes that uses CJK fonts
+$cjk-langs: zh-CN, zh-HK, zh-TW;