From: Jason Woofenden Date: Wed, 17 Dec 2008 19:48:41 +0000 (-0500) Subject: made reprioritize links look better X-Git-Url: https://jasonwoof.com/gitweb/?p=contractor-progress.git;a=commitdiff_plain;h=7e9890a5900fa0439918ea9c8805ed90dbc29ce0 made reprioritize links look better --- diff --git a/index.html b/index.html index db50f39..806ce88 100644 --- a/index.html +++ b/index.html @@ -43,7 +43,7 @@

Queued tasks

Jason hasn't started on these yet, so you can change them if you want. At some point you'll also be able to prioritize them.
- + diff --git a/tasks.css b/tasks.css index c117feb..6adaf9c 100644 --- a/tasks.css +++ b/tasks.css @@ -3,7 +3,9 @@ margin: 15px 0px 5px; } -.task_link { padding-top: 8px; } +.task_link { + padding-top: 8px; +} #badges { margin-top: 30px; @@ -16,3 +18,28 @@ font-size: 10px; text-align: center; } + +.updown { + width: 14px; + height: 18px; + position: relative; + background: transparent url(images/updown.png); + display: inline-block; + vertical-align: bottom; +} + +.updown_links { + position: absolute; + top: -7px; + right: -10000px; + width: 200px; + height: 20px; + border: 1px solid black; + background: #fff url(images/updown.png) right 50% no-repeat; + padding: 5px 20px 5px 5px; + text-align: right; +} + +.updown:hover .updown_links { + right: -1px; +}