diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-03 22:09:16 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-03 22:09:16 +0000 |
commit | 1cce7b5a4f71e86a7b17a05e0274decc30aa089b (patch) | |
tree | d1eafadba7e83b7472181f3b6faf79ea2c77924d | |
parent | 7b1557f421b955968e1dc90ffa11e7a836b47af6 (diff) | |
download | vdr-plugin-live-1cce7b5a4f71e86a7b17a05e0274decc30aa089b.tar.gz vdr-plugin-live-1cce7b5a4f71e86a7b17a05e0274decc30aa089b.tar.bz2 |
Update mit Bild usw
-rw-r--r-- | css/styles.css | 6 | ||||
-rw-r--r-- | pages/timers.ecpp | 8 | ||||
-rw-r--r-- | pages/whats_on_next.ecpp | 1 | ||||
-rw-r--r-- | pages/whats_on_now.ecpp | 1 |
4 files changed, 14 insertions, 2 deletions
diff --git a/css/styles.css b/css/styles.css index 6c4adf0..0be41be 100644 --- a/css/styles.css +++ b/css/styles.css @@ -98,7 +98,11 @@ table.timers { } table.timers tr td { - padding: 3px; + padding: 3px 7px 3px 3px; +} + +table.timers tr.active { + background: #DEE6EE; } table.timers tr td.head { diff --git a/pages/timers.ecpp b/pages/timers.ecpp index e4a335f..cf6479d 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -21,6 +21,7 @@ using namespace vdrlive; </head> <body> <div class="left_area"> + <img src="logo.png" alt="VDR Live!" border="0" /> <& menu > </div> <div class="inhalt"> @@ -32,20 +33,25 @@ using namespace vdrlive; % } else { <table class="timers" cellspacing="0" cellpadding="0"> <tr> + <td class="head"><$ tr("Channel") $></td> <td class="head"><$ tr("Start") $></td> <td class="head"><$ tr("Stop") $></td> <td class="head"><$ tr("File") $></td> </tr> <{ + bool active = false; for (cTimer *timer = Timers.First(); timer; timer = Timers.Next(timer)) { timer->SetEventFromSchedule(); // make sure the event is current + }> - <tr> + <tr class="<$ active ? "active" : "" $>"> + <td><$ timer->Channel()->Name() $></td> <td><$ FormatDateTime(tr("%I:%M %p"), timer->Start()) $></td> <td><$ FormatDateTime(tr("%I:%M %p"), timer->Stop()) $></td> <td><$ timer->File() $></td> </tr> <{ + active = !active; } } }> diff --git a/pages/whats_on_next.ecpp b/pages/whats_on_next.ecpp index 83dcfa0..ca849bf 100644 --- a/pages/whats_on_next.ecpp +++ b/pages/whats_on_next.ecpp @@ -25,6 +25,7 @@ const cSchedules* Schedules = cSchedules::Schedules(schedulesLock); </head> <body> <div class="left_area"> + <img src="logo.png" alt="VDR Live!" border="0" /> <& menu > </div> <div class="inhalt"> diff --git a/pages/whats_on_now.ecpp b/pages/whats_on_now.ecpp index 4a2a5bc..c623099 100644 --- a/pages/whats_on_now.ecpp +++ b/pages/whats_on_now.ecpp @@ -25,6 +25,7 @@ const cSchedules* Schedules = cSchedules::Schedules(schedulesLock); </head> <body> <div class="left_area"> + <img src="logo.png" alt="VDR Live!" border="0" /> <& menu > </div> <div class="inhalt"> |