From dce1cda4217900863ad5e579af64960c23409f65 Mon Sep 17 00:00:00 2001 From: Jan Jongboom Date: Tue, 17 Jan 2012 18:45:23 +0100 Subject: [PATCH] Make sure that Ace looks good on Windows & Linux too Default monospace font on Windows is now Consolas, which is a great one, then remove Courier New, because monospace is better on Linux systems; and if there is no nice monospace font it'll fall back to Courier anyway. --- lib/ace/css/editor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/css/editor.css b/lib/ace/css/editor.css index d9ae837b..84d82520 100644 --- a/lib/ace/css/editor.css +++ b/lib/ace/css/editor.css @@ -4,7 +4,7 @@ .ace_editor { position: absolute; overflow: hidden; - font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Droid Sans Mono', 'Courier New', monospace; + font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Droid Sans Mono', 'Consolas', monospace; font-size: 12px; }