summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Keil <tkeil (at) datacrystal (dot) de>2007-01-03 18:13:21 +0000
committerThomas Keil <tkeil (at) datacrystal (dot) de>2007-01-03 18:13:21 +0000
commite086df75301b2d17a3f6caacfa735d4c705b878b (patch)
treed884b0cc4f1d0d6e61660b40f71906ce85392654
parent8b0410e4488f08f8df01dd18a7fbf2876c5c45a5 (diff)
downloadvdr-plugin-live-e086df75301b2d17a3f6caacfa735d4c705b878b.tar.gz
vdr-plugin-live-e086df75301b2d17a3f6caacfa735d4c705b878b.tar.bz2
verschwindet eh gleich
-rw-r--r--styles.css30
-rw-r--r--whats_on_now.ecpp10
2 files changed, 34 insertions, 6 deletions
diff --git a/styles.css b/styles.css
index 1e44ba9..e3df546 100644
--- a/styles.css
+++ b/styles.css
@@ -46,12 +46,35 @@ div.head_box {
div.event {
width: 250px;
- height: 250px;
float: left;
border: 1px solid #6D96A9;
margin: 2px;
}
+div.event div.tools {
+ width: 20px;
+ height: 225px;
+ float: left;
+ background: #DEE6EE;
+ padding: 2px;
+ margin: 0px;
+}
+
+div.event div.content {
+ float: left;
+ margin: 0;
+ padding: 5px;
+ height: 225px;
+}
+
+div.event div.content. div.description {
+ overflow: auto;
+}
+
+div.event div.content p {
+
+}
+
div.event .station {
background: #6D96A9;
color: white;
@@ -60,10 +83,11 @@ div.event .station {
padding: 3px 3px 3px 10px;
}
-div.event .title {
+div.event div.content .title {
font-weight: bold;
}
-div.event .short {
+div.event div.content .short {
font-size: 11px;
}
+
diff --git a/whats_on_now.ecpp b/whats_on_now.ecpp
index 7dc2bf6..3511105 100644
--- a/whats_on_now.ecpp
+++ b/whats_on_now.ecpp
@@ -3,6 +3,7 @@
#include <vdr/channels.h>
#include <vdr/epg.h>
#include <vdr/config.h>
+#include <vdr/i18n.h>
#include "tools.h"
using namespace vdrlive;
@@ -45,10 +46,13 @@ const cSchedules* Schedules = cSchedules::Schedules(schedulesLock);
<div class="event">
<div class="station"><$ Channel->Name() $></div>
<div class="tools">
+ &nbsp;
+ </div>
+ <div class="content">
+ <span class="title"><$ title $></span><br/>
+ <span class="short"><$ short_description $></span>
+ <div class="description"><$ description $></div>
</div>
- <span class="title"><$ title $></span><br/>
- <span class="short"><$ short_description $></span>
- <p><$ description $></p>
</div>
<{
}