diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-11-15 16:02:39 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-11-15 16:02:39 -0800 |
commit | 6ec81006e7ac8ebc61d15af22e3bbda782c46b68 (patch) | |
tree | c6eb7320557ddfab24c5b72bd77559a756ce75f0 /modules/gallery/css | |
parent | 9df591c774d6acfbf658110a9151d87c583c0e82 (diff) |
Fix a bug where we were using <? ?> tags in css to figure out whether we
should gray out an element.
Diffstat (limited to 'modules/gallery/css')
-rw-r--r-- | modules/gallery/css/upgrader.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/css/upgrader.css b/modules/gallery/css/upgrader.css index 64e4ca07..97d00941 100644 --- a/modules/gallery/css/upgrader.css +++ b/modules/gallery/css/upgrader.css @@ -112,8 +112,8 @@ div#confirmation div { background: #eee; } -.gray_on_done { - opacity: <?= $done ? "0.5" : "1" ?>; +.muted { + opacity: 0.5; } pre { |