diff options
author | Martin Wache <martin@debian.lan> | 2010-11-20 13:07:12 +0100 |
---|---|---|
committer | Martin Wache <martin@debian.lan> | 2010-11-20 13:07:12 +0100 |
commit | 350ebad826ece189072d19b2dc9224ffc8e4aced (patch) | |
tree | 6e0f68a954579f77cefe41c70d5cbe368f5cfcd0 /css | |
parent | ff37e7006cea3b14bb108c68d60a97fe15074369 (diff) | |
download | vdr-plugin-live-350ebad826ece189072d19b2dc9224ffc8e4aced.tar.gz vdr-plugin-live-350ebad826ece189072d19b2dc9224ffc8e4aced.tar.bz2 |
- some fixes and improvements to multischedule
Diffstat (limited to 'css')
-rw-r--r-- | css/styles.css | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/css/styles.css b/css/styles.css index 4fd23b1..35b2119 100644 --- a/css/styles.css +++ b/css/styles.css @@ -867,6 +867,76 @@ table.listing a { font-weight: bold; } +/* ################################## + # table schedule + # (this is used for the MultiSchedule) + ################################## +*/ + +table.mschedule { + padding: 0px; + margin: 0px; +} + +table.mschedule tr { + height: 12px; +} + +table.mschedule tr td.event { + background: transparent url(img/bg_line.png) bottom repeat-x; + border-bottom: 1px solid #C0C1DA; +} + +table.mschedule tr.odd td.time { + background-color: #D0D0ff; +} + +table.mschedule tr.even td.time { + background-color: #ffffff; +} + +table.mschedule tr.current_row td.time { + background-color: #ffB0B0; +} + +table.mschedule tr td.leftcol { + padding-left: 7px; + padding-right: 5px; +} + +table.mschedule div.content1 { + min-width: 20em; + max-width: 30em; +} + +table.mschedule div.tools1 { + float: right; +} + +table.mschedule div.start { + float: left; +} + +table.mschedule tr td div.title { + padding: 3px; + clear: both; +} + +table.mschedule tr td div.short { + clear: both; + overflow: hidden; +} + +table.mschedule tr td div.description { + overflow: hidden; + clear: both; +} + +table.mschedule a { + color: black; + font-weight: bold; +} + /* ############################## # Blue Background Thingy |