diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-05 08:08:12 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-05 08:08:12 -0800 |
commit | a8d30dcecf40210096a4adaea0f5d231b69ead6a (patch) | |
tree | d583b4983a96543ba78302a16b531fa77cb1aed7 /modules/organize/css | |
parent | eff7de3852c1a11ee82fdb7467a6e51fa106af0f (diff) |
Improve the handling of the drop target marker when dragging items within the
grid. Originally the borders disappeared not they don't. A single element is
used to contain the drop target marker. This element contains all the position
information for the drop handler to determine where the item should be
positioned.
In addition, the drop target marker is removed when the drag extends outside
the grid and is re shown, when the cursor re-enters the thumbnail grid.
Diffstat (limited to 'modules/organize/css')
-rw-r--r-- | modules/organize/css/organize_theme.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/organize/css/organize_theme.css b/modules/organize/css/organize_theme.css index 4248f095..3d289755 100644 --- a/modules/organize/css/organize_theme.css +++ b/modules/organize/css/organize_theme.css @@ -6,6 +6,11 @@ } #g-organize-microthumb-grid, +#g-organize-drop-target-marker, .g-organize-album-text:hover { border-color: #79B7E7; } + +#g-organize-drop-target-marker { + background-color: #79B7E7; +} |