diff options
-rw-r--r-- | css/styles.css | 8 | ||||
-rw-r--r-- | pages/timers.ecpp | 7 |
2 files changed, 12 insertions, 3 deletions
diff --git a/css/styles.css b/css/styles.css index eea1a8b..b2310bd 100644 --- a/css/styles.css +++ b/css/styles.css @@ -486,7 +486,7 @@ table.timers { table.timers tr td { padding: 3px 7px 3px 3px; background: url(bg_line.png) bottom repeat-x; - border-bottom: 1px solid #C0C1DA; + border-bottom: 1px solid #C0C1DA; } table.timers td.border { @@ -504,6 +504,11 @@ table.timers tr.head td { height: 23px; } +table.timers tr.description td { + font-weight: bold; + background: #E9EFFF; +} + /* ############################## # Schedule @@ -641,7 +646,6 @@ div.screenshot { margin-right: 20px; } -*/ /* ############################## diff --git a/pages/timers.ecpp b/pages/timers.ecpp index 05084b8..d6371c1 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -74,6 +74,11 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); }> <tr class="head"> <td style="background: url(bg_box_l.png); width: 3px;"/></td> + <td colspan="9"><$ timer->WeekDays() > 0 ? *cTimer::PrintDay(0, timer->WeekDays()) : FormatDateTime(tr("%A, %x"), timer->Day()) $></td> + <td style="background: url(bg_box_r.png); width: 3px;" /></td> + </tr> + <tr class="description"> + <td class="border" style="border-left: 1px solid black"></td> <td><$ tr("Channel") $></td> <td><$ tr("Date") $></td> <td><$ tr("Start") $></td> @@ -83,7 +88,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); <td> </td> <td> </td> <td> </td> - <td style="background: url(bg_box_r.png); width: 3px;" /></td> + <td class="border" style="border-right: 1px solid black"></td> </tr> <{ } |