diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 15:42:43 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 15:42:43 -0700 |
commit | a015078ccad388e9be05cd45207ebd12bfdd015c (patch) | |
tree | cab54ce79c93d4f98aca0bb667d35a9be3c171d1 | |
parent | 64d40397fe0738e961b9102652bd36cfe051fc9a (diff) |
Change the higlight/selection behavior so that we don't use opacity to
indicate selection state. It's too difficult to tell opacity
differences on light colored photos. This approach models what
WinXP does.
-rw-r--r-- | modules/organize/css/organize.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/organize/css/organize.css b/modules/organize/css/organize.css index d3e423fd..b14870bb 100644 --- a/modules/organize/css/organize.css +++ b/modules/organize/css/organize.css @@ -89,9 +89,9 @@ float: left; font-size: 0.8em; padding: .5em !important; - opacity: .5; border-left: 1px hidden #13A; border-right: 1px hidden #13A; + margin: 4px; } .gOrganizeMicroThumb { @@ -102,7 +102,8 @@ } .gOrganizeMicroThumbGridCell.ui-state-selected { - opacity: 1; + margin: 2px; + border: 2px solid #009; } .ui-selectable-lasso { @@ -118,8 +119,9 @@ background-color: #e8e8e8; } -#gOrganizeMicroThumbGrid :hover { - opacity: 1; +.gOrganizeMicroThumbGridCell:hover { + margin: 2px; + border: 2px solid #009; } /**************************************************************** |