diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-07-11 00:59:37 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-07-11 00:59:37 +0000 |
commit | ca73aba0898874fdf44f5fbaac6c4af541385822 (patch) | |
tree | eb36fcf197d2c769a4a6f0e012cb5fe7a64b5c66 /modules | |
parent | 10edd51e2958a3a0c7b1b0fcc9628f7d2fa0bb7e (diff) | |
download | brdo-ca73aba0898874fdf44f5fbaac6c4af541385822.tar.gz brdo-ca73aba0898874fdf44f5fbaac6c4af541385822.tar.bz2 |
#668280 by mgifford, Jeff Burnz, jide, David_Rothstein: Fixed Toolbar font size keeps jumping around.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/toolbar/toolbar.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/toolbar/toolbar.css b/modules/toolbar/toolbar.css index 5fc8159ba..6e9b702d6 100644 --- a/modules/toolbar/toolbar.css +++ b/modules/toolbar/toolbar.css @@ -27,9 +27,12 @@ body.toolbar-drawer { /** * Base styles. + * + * We use a keyword for the toolbar font size to make it display consistently + * across different themes, while still allowing browsers to resize the text. */ #toolbar { - font: normal 0.9em "Lucida Grande", Verdana, sans-serif; + font: normal small "Lucida Grande", Verdana, sans-serif; background: #666; color: #ccc; position: fixed; @@ -52,8 +55,9 @@ body.toolbar-drawer { } #toolbar a { - text-decoration: none; color: #fff; + font-size: .846em; + text-decoration: none; } #toolbar ul li, |