From 880f6bcf0266578c4e8e16d909c18af0449943cc Mon Sep 17 00:00:00 2001 From: Cheng-Han, Wu Date: Mon, 15 Feb 2016 19:13:17 -0600 Subject: Updated to support lang attribute and styles in editor --- public/css/index.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'public/css/index.css') diff --git a/public/css/index.css b/public/css/index.css index dba15842..17765206 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -11,7 +11,7 @@ body { /*overflow: hidden;*/ } .CodeMirror { - font-family: "Source Code Pro", Consolas, monaco, "Microsoft JhengHei", Meiryo, "MS ゴシック", "MS Gothic", monospace; + font-family: "Source Code Pro", Consolas, monaco, monospace; letter-spacing: 0.025em; line-height: 1.25; font-size: 18px; @@ -19,6 +19,18 @@ body { overflow-y: hidden !important; -webkit-overflow-scrolling: touch; } +/* support japanese font */ +.CodeMirror[lang^="ja"] { + font-family: "Source Code Pro", Consolas, monaco, Meiryo, "MS ゴシック", "MS Gothic", monospace; +} +/* support zh-tw font */ +.CodeMirror[lang="zh-tw"] { + font-family: "Source Code Pro", Consolas, monaco, "Microsoft JhengHei", "微軟正黑", monospace; +} +/* support zh-cn font */ +.CodeMirror[lang="zh-cn"] { + font-family: "Source Code Pro", Consolas, monaco, "Microsoft YaHei", "微软雅黑", monospace; +} .CodeMirror-placeholder { color: #777 !important; } -- cgit v1.2.3