diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-12-30 17:16:30 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-12-30 17:16:30 +0000 |
commit | 2dab6ec236719b6a88be4150ed3bb4db01ecaecf (patch) | |
tree | ab11cd0dedba442400cc3a335840fa731ec525a6 | |
parent | 6978afda559b690b1d1187ad88aaeb4746b5d247 (diff) | |
download | jquery-ui-2dab6ec236719b6a88be4150ed3bb4db01ecaecf.tar.gz jquery-ui-2dab6ec236719b6a88be4150ed3bb4db01ecaecf.zip |
CSS Framework: Shifted disabled state below priority states to make disabled secondary buttons look disabled.
-rw-r--r-- | themes/base/ui.theme.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/base/ui.theme.css b/themes/base/ui.theme.css index 4d19fc7f0..07fa5e4c2 100644 --- a/themes/base/ui.theme.css +++ b/themes/base/ui.theme.css @@ -33,9 +33,9 @@ .ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; } .ui-state-error a, .ui-widget-content .ui-state-error a { color: #cd0a0a/*{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; } .ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } +.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } /* Icons ----------------------------------*/ |