diff options
-rw-r--r-- | css/styles.css | 16 | ||||
-rw-r--r-- | pages/Makefile | 2 | ||||
-rw-r--r-- | pages/menu.ecpp | 3 |
3 files changed, 19 insertions, 2 deletions
diff --git a/css/styles.css b/css/styles.css index f665751..6c4adf0 100644 --- a/css/styles.css +++ b/css/styles.css @@ -93,3 +93,19 @@ table.event tr td.content .short { height: 40px; } +table.timers { + padding-top: 10px; +} + +table.timers tr td { + padding: 3px; +} + +table.timers tr td.head { + background: #6D96A9; + color: white; + font-weight: bold; + margin: 0; + padding: 3px; +} + diff --git a/pages/Makefile b/pages/Makefile index bc6a6d8..3a08054 100644 --- a/pages/Makefile +++ b/pages/Makefile @@ -14,7 +14,7 @@ VDRDIR ?= ../../../.. ### The object files (add further files here): -OBJS = menu.o event_widget.o channels.o schedule.o whats_on_now.o whats_on_next.o +OBJS = menu.o event_widget.o channels.o schedule.o whats_on_now.o whats_on_next.o timers.o ### Default rules: diff --git a/pages/menu.ecpp b/pages/menu.ecpp index 4e42e41..1b3c5c9 100644 --- a/pages/menu.ecpp +++ b/pages/menu.ecpp @@ -4,5 +4,6 @@ </%pre> <div class="menu"> <a href="whats_on_now.html"><$ tr("What's on now?") $></a><br/> - <a href="whats_on_next.html"><$ tr("What's on next?") $></a> + <a href="whats_on_next.html"><$ tr("What's on next?") $></a><br/> + <a href="timers.html"><$ tr("Timers") $></a> </div>
\ No newline at end of file |