diff options
author | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-14 00:21:58 +0000 |
---|---|---|
committer | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-14 00:21:58 +0000 |
commit | 0078ffb91ddeea8c35cdd75ffe161623030d8dbf (patch) | |
tree | 96089176d6afd0030fa4eb77a8b6ca7bcbb4ec59 /chrome/browser/resources/new_tab_theme.css | |
parent | 849a62a1aa77e5d7887bc310233d86cf33ebf393 (diff) | |
download | chromium_src-0078ffb91ddeea8c35cdd75ffe161623030d8dbf.zip chromium_src-0078ffb91ddeea8c35cdd75ffe161623030d8dbf.tar.gz chromium_src-0078ffb91ddeea8c35cdd75ffe161623030d8dbf.tar.bz2 |
Allow the new tab page to be themed (you may want to review DOMUIThemeSource as a whole and not just these changes).
Change global std::strings to chars* in browser theme provider.
Add ability for ReplaceStringPlaceHolder to take up to 9 replacements.
BUG=11235,11685
Review URL: http://codereview.chromium.org/115172
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16020 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/new_tab_theme.css')
-rw-r--r-- | chrome/browser/resources/new_tab_theme.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/browser/resources/new_tab_theme.css b/chrome/browser/resources/new_tab_theme.css new file mode 100644 index 0000000..0c28c46 --- /dev/null +++ b/chrome/browser/resources/new_tab_theme.css @@ -0,0 +1,11 @@ +body { + background-image:url(chrome://theme/theme_ntp_background?$1); + background-position:bottom; + color: $2; +} +a { + color: $3; +} +.sidebar.themed { + background-color: $4; +}
\ No newline at end of file |