Skip to content

Commit

Permalink
Change the higlight/selection behavior so that we don't use opacity to
Browse files Browse the repository at this point in the history
indicate selection state.  It's too difficult to tell opacity
differences on light colored photos.  This approach models what
WinXP does.
  • Loading branch information
bharat committed Aug 30, 2009
1 parent 64d4039 commit a015078
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions modules/organize/css/organize.css
Expand Up @@ -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 {
Expand All @@ -102,7 +102,8 @@
}

.gOrganizeMicroThumbGridCell.ui-state-selected {
opacity: 1;
margin: 2px;
border: 2px solid #009;
}

.ui-selectable-lasso {
Expand All @@ -118,8 +119,9 @@
background-color: #e8e8e8;
}

#gOrganizeMicroThumbGrid :hover {
opacity: 1;
.gOrganizeMicroThumbGridCell:hover {
margin: 2px;
border: 2px solid #009;
}

/****************************************************************
Expand Down

0 comments on commit a015078

Please sign in to comment.