From 8fc0f8118a42de9a52fa98cc8a3f5c9b9efa74d9 Mon Sep 17 00:00:00 2001 From: xdai Date: Tue, 3 Feb 2015 09:44:27 -0800 Subject: [PATCH] Fix the incorrect font used by buttons in ChromeOS. WebUI should override the default Blink style for buttons so that buttons can be rendered with the correct font. BUG=448624 TEST=manually checked on devices (Pixel) Review URL: https://codereview.chromium.org/896673002 Cr-Commit-Position: refs/heads/master@{#314359} --- ui/webui/resources/css/text_defaults.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/webui/resources/css/text_defaults.css b/ui/webui/resources/css/text_defaults.css index 682a858526bc..1af823bf961c 100644 --- a/ui/webui/resources/css/text_defaults.css +++ b/ui/webui/resources/css/text_defaults.css @@ -23,3 +23,7 @@ body { font-family: $2; font-size: $3; } + +button { + font-family: $2; +} -- 2.11.4.GIT