diff options
author | Scott Jehl <scott@scottjehl.com> | 2009-03-24 16:16:55 +0000 |
---|---|---|
committer | Scott Jehl <scott@scottjehl.com> | 2009-03-24 16:16:55 +0000 |
commit | 3aab07e577340b28990177e0c6911fe9609f9800 (patch) | |
tree | cf0baffbc27a54b7ebf319c5f779bbfca74c565e /themes | |
parent | d264f1b8c492e9bf5488e9a0fb65c3d7f1bddde4 (diff) | |
download | jquery-ui-3aab07e577340b28990177e0c6911fe9609f9800.tar.gz jquery-ui-3aab07e577340b28990177e0c6911fe9609f9800.zip |
added a rule for widget embedding font size. Resets ui-widget class font-size to 1em when inside another ui-widget.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.theme.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/themes/base/ui.theme.css b/themes/base/ui.theme.css index 014fcfc67..2e0b20b2e 100644 --- a/themes/base/ui.theme.css +++ b/themes/base/ui.theme.css @@ -9,6 +9,7 @@ /* Component containers ----------------------------------*/ .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } +.ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } .ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_glass_75_ffffff_1x400.png)/*{bgImgUrlContent}*/ 0/*{bgContentXPos}*/ 0/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; } .ui-widget-content a { color: #222222/*{fcContent}*/; } |