diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-18 00:11:42 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-18 00:11:42 +0000 |
commit | 850fe0ddff35d86a0a3c876ee518ecfb778767d5 (patch) | |
tree | ee17377c20c3f9f41f9e53b7c26de21afb0e91ee /pages/pageelems.ecpp | |
parent | b6ebbd4df6a6a588692bd0e5e1bbd1d920aad3e1 (diff) | |
download | vdr-plugin-live-850fe0ddff35d86a0a3c876ee518ecfb778767d5.tar.gz vdr-plugin-live-850fe0ddff35d86a0a3c876ee518ecfb778767d5.tar.bz2 |
- Changed default tooltip style class to domTThint
- Added tooltip style class domTTepg for epg infos like in recordings
- Added new pageelement.epg_tt_box to create epg box tooltips.
Used at moment in recordings. Planned also for whats_on and schedule.
- Changed structure of event box in whats_on to same structure like
epg box. This makes the styling comparable between the two boxes.
- added bg_tools.png to with a vertical fadeing border to resemble the
fading bottom of more line oriented pages.
Diffstat (limited to 'pages/pageelems.ecpp')
-rw-r--r-- | pages/pageelems.ecpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pages/pageelems.ecpp b/pages/pageelems.ecpp index 79d5d51..869f362 100644 --- a/pages/pageelems.ecpp +++ b/pages/pageelems.ecpp @@ -6,6 +6,7 @@ using namespace std; </%pre> + <%def doc_type> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> </%def> @@ -59,3 +60,33 @@ component; </%args> <a href="javascript:LiveSimpleAjaxRequest('play_recording.xml', 'recording', '<$ recordingid $>');"><img src="<$ image $>" alt="<$ alt $>" /></a> </%def> + +<%def epg_tt_box> +<%args> + string boxId; + string caption; + string tools_comp; + string time; + string title; + string short_descr; + string long_descr; +</%args> + <div class="epg_description" id="<$ (boxId) $>"> + <div class="station"> + <div class="boxheader"><div><div><$ (caption) $><& tooltip.close domId=(boxId) &></div></div></div> + </div> + <div class="epg_content"> + <div class="epg_tools"> + <& (tools_comp) &> + </div> + <div> + <div class="info"><$ (time) $></div> + <div class="title"><$ (title) $></div> + <div class="short"><$ (short_descr) $></div> + <div class="description"> + <$ (long_descr) $> + </div> + </div> + </div> + </div> +</%def> |