diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2011-01-01 16:56:16 +0100 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2011-01-01 16:56:16 +0100 |
commit | 98c93ca4796184dac04671554ad625c7de643f43 (patch) | |
tree | e68f189fdcd9db2b9c5e14c62d5f1f571b862206 /css/styles.css | |
parent | 21c19b3924a44ad284f284dcf3b6ed4cb8a710e7 (diff) | |
parent | 78bf26e22bb4d921d0270e64974daceb78130019 (diff) | |
download | vdr-plugin-live-98c93ca4796184dac04671554ad625c7de643f43.tar.gz vdr-plugin-live-98c93ca4796184dac04671554ad625c7de643f43.tar.bz2 |
Merge remote branch 'mav55/MultiSchedule'
Diffstat (limited to 'css/styles.css')
-rw-r--r-- | css/styles.css | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/css/styles.css b/css/styles.css index 4fd23b1..5090844 100644 --- a/css/styles.css +++ b/css/styles.css @@ -867,6 +867,80 @@ 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 td.has_timer { + background-color: #FFE0E0; +} + +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: 10em; + 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 |