From 7e9890a5900fa0439918ea9c8805ed90dbc29ce0 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Wed, 17 Dec 2008 14:48:41 -0500 Subject: [PATCH] made reprioritize links look better --- index.html | 2 +- tasks.css | 29 ++++++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) 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; +} -- 1.7.10.4