diff options
-rw-r--r-- | css/styles.css | 6 | ||||
-rw-r--r-- | pages/schedule.ecpp | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/css/styles.css b/css/styles.css index 09dfc47..2cfce95 100644 --- a/css/styles.css +++ b/css/styles.css @@ -548,6 +548,12 @@ table.schedule tr.active { background: #DEE6EE; } +table.schedule div.more { + margin: 0px; + font-weight: bold; + cursor: pointer; +} + /* ############################## # Blue Background Thingy diff --git a/pages/schedule.ecpp b/pages/schedule.ecpp index 7ca66eb..9051a04 100644 --- a/pages/schedule.ecpp +++ b/pages/schedule.ecpp @@ -112,14 +112,11 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); % if(Event == PresentEvent) { <font color="#0000FF"> % } - <strong><$ title $></strong><br /><$ short_description $><br /> + <div class="more"<& tooltip.hint text=(StringEscapeAndBreak(StringWordTruncate(description, 300, truncated)) + string("<br />") + string(tr("Click to view details."))) &><& tooltip.display domId=(epgEvent->Id()) &>><strong><$ title $></strong></div><$ short_description $><br /> % if(Event == PresentEvent) { </font> % } </td> - <td> - <div class="more"<& tooltip.hint text=(StringEscapeAndBreak(StringWordTruncate(description, 300, truncated)) + string("<br />") + string(tr("Click to view details."))) &><& tooltip.display domId=(epgEvent->Id()) &>><$ (string(tr("more")) + string(" ...")) $></div> - </td> <td style="border-right: 1px solid black"> </td> </tr> % } |