Chromium Code Reviews| Index: ui/webui/resources/css/text_defaults.css |
| diff --git a/ui/webui/resources/css/text_defaults.css b/ui/webui/resources/css/text_defaults.css |
| index 037ade7efb1ba8ba3cf1594976eff8b7f2822e3f..8795e7e3c19e580c654fa8a7903670c4d0e52e70 100644 |
| --- a/ui/webui/resources/css/text_defaults.css |
| +++ b/ui/webui/resources/css/text_defaults.css |
| @@ -13,17 +13,17 @@ |
| * |
| * 2. via the webui::AppendWebUICSSTextDefaults() method to directly append it |
| * to an HTML string. |
| - * Otherwise its $placeholders won't be expanded. */ |
| + * Otherwise its $i18n{placeholders} won't be expanded. */ |
|
Dan Beam
2016/01/28 22:11:01
fix this
https://build.chromium.org/p/tryserver.ch
dschuyler
2016/01/28 22:16:15
Done.
|
| html { |
| - direction: ${textDirection}; |
| + direction: $i18n{textDirection}; |
| } |
| body { |
| - font-family: ${fontFamily}; |
| - font-size: ${fontSize}; |
| + font-family: $i18n{fontFamily}; |
| + font-size: $i18n{fontSize}; |
| } |
| button { |
| - font-family: ${fontFamily}; |
| + font-family: $i18n{fontFamily}; |
| } |