Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Unified Diff: ui/webui/resources/css/text_defaults.css

Issue 1585923011: [Template Expressions] changing ${ leader to $i18n{ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/webui/web_ui_util.cc ('k') | ui/webui/resources/css/text_defaults_md.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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};
}
« no previous file with comments | « ui/base/webui/web_ui_util.cc ('k') | ui/webui/resources/css/text_defaults_md.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698