diff options
author | Scott Jehl <scott@scottjehl.com> | 2009-02-20 21:32:48 +0000 |
---|---|---|
committer | Scott Jehl <scott@scottjehl.com> | 2009-02-20 21:32:48 +0000 |
commit | d7cf0ff3f42e4c44aec4b628b622fc7d6afc74b3 (patch) | |
tree | 41126984676bdbffee90f1b5629d80e032728912 /themes | |
parent | 1fffa645b6c0c7cdcf607b1e5bdac748944ba793 (diff) | |
download | jquery-ui-d7cf0ff3f42e4c44aec4b628b622fc7d6afc74b3.tar.gz jquery-ui-d7cf0ff3f42e4c44aec4b628b622fc7d6afc74b3.zip |
switched order of ui-widget-content and ui-widget-header styles - header styles need to apply completely when header is a child of content (or not)
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.theme.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/base/ui.theme.css b/themes/base/ui.theme.css index 5d376091d..3795976bb 100644 --- a/themes/base/ui.theme.css +++ b/themes/base/ui.theme.css @@ -10,10 +10,10 @@ ----------------------------------*/ .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } -.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 0/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; } -.ui-widget-header a { color: #222222/*{fcHeader}*/; } .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}*/; } +.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 0/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; } +.ui-widget-header a { color: #222222/*{fcHeader}*/; } /* Interaction states ----------------------------------*/ |