diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-02 18:20:03 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-02 18:20:03 +0000 |
commit | 25abb027ed2b8c45391fed9aeb8013b528428583 (patch) | |
tree | 7b3520a8b05c86210489ff8cf9d6e39c1f3fa24f /chrome/common/extensions | |
parent | fa59e6afced683747d18e187d516190deedee5c5 (diff) | |
download | chromium_src-25abb027ed2b8c45391fed9aeb8013b528428583.zip chromium_src-25abb027ed2b8c45391fed9aeb8013b528428583.tar.gz chromium_src-25abb027ed2b8c45391fed9aeb8013b528428583.tar.bz2 |
Extensions: stop using font:menu on a couple of extensions examples.
Changing to font-family: sans-serif; (at least on my system) does not seem to actually change the font that is selected, however, font-size: 0.8em; does change the size of the font.
BUG=29095
Review URL: http://codereview.chromium.org/450040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33581 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions')
-rw-r--r-- | chrome/common/extensions/docs/examples/api/browserAction/set_page_color/popup.html | 3 | ||||
-rw-r--r-- | chrome/common/extensions/docs/examples/extensions/buildbot/popup.html | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/chrome/common/extensions/docs/examples/api/browserAction/set_page_color/popup.html b/chrome/common/extensions/docs/examples/api/browserAction/set_page_color/popup.html index f82fded..9230254 100644 --- a/chrome/common/extensions/docs/examples/api/browserAction/set_page_color/popup.html +++ b/chrome/common/extensions/docs/examples/api/browserAction/set_page_color/popup.html @@ -14,7 +14,8 @@ div { cursor: pointer; text-align: center; padding: 1px 3px; - font: menu; + font-family: sans-serif; + font-size: 0.8em; width: 100px; margin-top: 1px; background: #cccccc; diff --git a/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html b/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html index 11b2b40..3a66636 100644 --- a/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html +++ b/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html @@ -139,7 +139,8 @@ function toggle_size() { </script> <style> body { - font: menu; + font-family: sans-serif; + font-size: 0.8em; overflow: hidden; } @@ -230,4 +231,4 @@ body.small .bot { <a href="" onclick='showFyi()'>fyi</a> </div> <div id="bots">Loading....</div> -</body>
\ No newline at end of file +</body> |