diff options
author | Chad Kieffer <chad@2tbsp.com> | 2009-01-14 06:36:47 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2009-01-14 06:36:47 +0000 |
commit | c383b2fc35bbe1864acb79b784b4cd3a2f82a95e (patch) | |
tree | 2cd09ea90f3c56adca6ecd45f29f3016196d52fa /core/css/quick.css | |
parent | 2a7d4b43653d8d340bae185c48dde4de4f8741be (diff) |
Visually attach the quick edit menu to the thumbnail container. Added more edit options (move, select as album cover, delete, additional options).
Need to decide which belong in the bar and which belong in a dropdown menu under "options."
Diffstat (limited to 'core/css/quick.css')
-rw-r--r-- | core/css/quick.css | 37 |
1 files changed, 25 insertions, 12 deletions
diff --git a/core/css/quick.css b/core/css/quick.css index 7bf78464..fef92c22 100644 --- a/core/css/quick.css +++ b/core/css/quick.css @@ -6,7 +6,7 @@ #gQuickPane { background: #000; - border-bottom: 1px solid #fff; + border-bottom: 1px solid #ccc; opacity: 0.8; } @@ -16,10 +16,9 @@ background-repeat: no-repeat; cursor: pointer; display: block; - float: right; + float: left; height: 16px; margin: 8px; - top: 0px; width: 16px; } @@ -31,20 +30,34 @@ display: none; } +#gQuickPane .edit { + background-position: 0 0; +} + #gQuickPane .clockwise { background-position: -16px 0; - position: absolute; - right: 0px; } #gQuickPane .counter-clockwise { - background-position: 0 0; - left: 0px; - position: absolute; + background-position: -32px 0; } -#gQuickPane .edit { - background-position: 0 -16px; - left: 42%; - position: absolute; +#gQuickPane .delete { + background-position: -48px 0; } + +#gQuickPane .move { + background-position: -64px 0; +} + +#gQuickPane .tag { + background-position: -80px 0; +} + +#gQuickPane .cover { + background-position: -96px 0; +} + +#gQuickPane .options { + background-position: -112px 0; +}
\ No newline at end of file |