From 37cc5d20a8b3669db68287687ba5160b718959f4 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Sat, 13 Sep 2014 20:53:31 +0100 Subject: [PATCH] Specify full stack of fonts for the chat input as well Also removes Menlo from the stack, since it is not fixed-width unlike the others in the stack, and Monaco already accounts for OS X --- client/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/css/style.css b/client/css/style.css index 102f7f9..fe5bc03 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -404,7 +404,7 @@ button { } #chat, #windows .header { - font: 13px Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace; + font: 13px Consolas, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace; } #chat button:hover { opacity: .6; @@ -670,7 +670,7 @@ button { } #form input { border: 1px solid #cfdae1; - font: 13px Consolas, monospace; + font: 13px Consolas, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace; border-radius: 2px; height: 100%; outline: none;