diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-03-25 13:19:58 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-03-25 13:19:58 +0000 |
commit | 2be45ec781888fe598e064aa91c35da88cc75a90 (patch) | |
tree | 70accfa774c0c7923f898b19db6b530e7fd4232c | |
parent | 7519f973eab3099d3c6cd5fbad5befcbb888efa3 (diff) | |
download | vdr-plugin-live-2be45ec781888fe598e064aa91c35da88cc75a90.tar.gz vdr-plugin-live-2be45ec781888fe598e064aa91c35da88cc75a90.tar.bz2 |
Beautified some styles
-rw-r--r-- | pages/timers.ecpp | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/pages/timers.ecpp b/pages/timers.ecpp index d24a2d5..f0a40a2 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -18,6 +18,7 @@ using namespace vdrlive; <head> <title>VDR-Live - <$ pageTitle $></title> <link rel="stylesheet" type="text/css" href="/styles.css" /> + <& tooltip.javascript var=("domTT_styleClass") value=("domTTepg") &> <& pageelems.ajax_js &> </head> <body onload="LiveStatusAjaxRequest('infobox.html', 'infobox')"> @@ -28,21 +29,24 @@ using namespace vdrlive; Keiner Timer definiert % } else { <table class="timers" cellspacing="0" cellpadding="0"> - <tr> - <td class="head"> </td> - <td class="head"><$ tr("Active") $></td> - <td class="head"><$ tr("Channel") $></td> - <td class="head"><$ tr("Date") $></td> - <td class="head"><$ tr("Start") $></td> - <td class="head"><$ tr("Stop") $></td> - <td class="head"> </td> - <td class="head"><$ tr("File") $></td> + <tr class="head"> + <td style="background: url(bg_box_l.png); width: 3px;"/></td> + <td> </td> + <td><$ tr("Active") $></td> + <td><$ tr("Channel") $></td> + <td><$ tr("Date") $></td> + <td><$ tr("Start") $></td> + <td><$ tr("Stop") $></td> + <td> </td> + <td><$ tr("File") $></td> + <td style="background: url(bg_box_r.png); width: 3px;" /></td> </tr> <{ bool active = false; for (SortedTimers::iterator timer = timers.begin(); timer != timers.end(); ++timer) { }> <tr class="<$ active ? "active" : "" $>"> + <td class="border" style="border-left: 1px solid black"></td> <td><button type="button" class="smallbutton" onclick="location.href='edit_timer.html?timerid=<$ timers.GetTimerId(*timer) $>';"><$ tr("Edit") $></button></td> <td><img src="/<$ (timer->Flags() & tfActive) ? "active" : "inactive" $>.png" alt="Aktiv?" /></td> <td><$ timer->Channel()->Name() $></td> @@ -51,12 +55,14 @@ using namespace vdrlive; <td><$ FormatDateTime(tr("%I:%M %p"), timer->StopTime()) $></td> <td><{ if (timer->Recording()) { }><img src="/record.png" alt="Record" /><{ } }></td> <td><$ timer->File() $></td> + <td class="border" style="border-right: 1px solid black"></td> </tr> <{ active = !active; } } }> + <tr><td colspan="10" style="border-top: 1px solid black"> </td></tr> </table> </div> </body> |