diff options
author | Scott Jehl <scott@scottjehl.com> | 2009-02-20 21:35:01 +0000 |
---|---|---|
committer | Scott Jehl <scott@scottjehl.com> | 2009-02-20 21:35:01 +0000 |
commit | 1141b61c0ea45317cee5dbaff093ac3b65459645 (patch) | |
tree | 4639c0dea893afda80d996cb096a698cc75e9b84 /themes | |
parent | d7cf0ff3f42e4c44aec4b628b622fc7d6afc74b3 (diff) | |
download | jquery-ui-1141b61c0ea45317cee5dbaff093ac3b65459645.tar.gz jquery-ui-1141b61c0ea45317cee5dbaff093ac3b65459645.zip |
added rules to make sure font color works on links within error and highlight containers
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.theme.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/themes/base/ui.theme.css b/themes/base/ui.theme.css index 3795976bb..4512bc6a7 100644 --- a/themes/base/ui.theme.css +++ b/themes/base/ui.theme.css @@ -27,7 +27,9 @@ /* Interaction Cues ----------------------------------*/ .ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 0/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; } +.ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } .ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_inset-soft_95_fef1ec_1x100.png)/*{bgImgUrlError}*/ 0/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; } +.ui-state-error a, .ui-widget-content .ui-state-error a { color: #363636/*{fcError}*/; } .ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } .ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } .ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; } |