| Index: ui/webui/resources/css/text_defaults_md.css
|
| diff --git a/ui/webui/resources/css/text_defaults.css b/ui/webui/resources/css/text_defaults_md.css
|
| similarity index 70%
|
| copy from ui/webui/resources/css/text_defaults.css
|
| copy to ui/webui/resources/css/text_defaults_md.css
|
| index 037ade7efb1ba8ba3cf1594976eff8b7f2822e3f..a2b2022667a8bfa2a1e68e4ff115d2ca835a34b5 100644
|
| --- a/ui/webui/resources/css/text_defaults.css
|
| +++ b/ui/webui/resources/css/text_defaults_md.css
|
| @@ -1,4 +1,4 @@
|
| -/* Copyright 2014 The Chromium Authors. All rights reserved.
|
| +/* Copyright 2015 The Chromium Authors. All rights reserved.
|
| * Use of this source code is governed by a BSD-style license that can be
|
| * found in the LICENSE file. */
|
|
|
| @@ -9,21 +9,23 @@
|
| * There are two ways to include this stylesheet:
|
| * 1. via its chrome://resources/ URL in HTML, i.e.:
|
| *
|
| - * <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
|
| + * <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
|
| *
|
| - * 2. via the webui::AppendWebUICSSTextDefaults() method to directly append it
|
| + * 2. via the webui::AppendWebUICSSTextDefaultsMd() method to directly append it
|
| * to an HTML string.
|
| * Otherwise its $placeholders won't be expanded. */
|
|
|
| +@import url(chrome://resources/css/roboto.css);
|
| +
|
| html {
|
| direction: ${textDirection};
|
| }
|
|
|
| body {
|
| - font-family: ${fontFamily};
|
| + font-family: Roboto, ${fontFamily};
|
| font-size: ${fontSize};
|
| }
|
|
|
| button {
|
| - font-family: ${fontFamily};
|
| + font-family: Roboto, ${fontFamily};
|
| }
|
|
|