diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-04 14:47:17 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-04 14:47:17 +0000 |
commit | ad4402f57c78a306cdb385d266a4ef3e4e154b09 (patch) | |
tree | fc5e9ed1992754a3b3fd7f919a60e204cfafcb73 /css | |
parent | 55b43cdf4198a260685c416d26e90c9265b66bb9 (diff) | |
download | vdr-plugin-live-ad4402f57c78a306cdb385d266a4ef3e4e154b09.tar.gz vdr-plugin-live-ad4402f57c78a306cdb385d266a4ef3e4e154b09.tar.bz2 |
Styles added for the Schedule table
Diffstat (limited to 'css')
-rw-r--r-- | css/styles.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/css/styles.css b/css/styles.css index 8d262ad..b4fda24 100644 --- a/css/styles.css +++ b/css/styles.css @@ -119,3 +119,31 @@ table.timers tr td.head { padding: 3px; } +<# + ########################## + # Schedule + ########################## +#> + +table.schedule { + margin-top: 10px; + border: 1px solid #6D96A9; +} + +table.schedule tr td.head { + background: #6D96A9; + color: white; + font-weight: bold; + margin: 0; + padding: 3px; +} + +table.schedule tr td { + vertical-align: top; + padding: 3px 7px 3px 3px; +} + + +table.schedule tr.active { + background: #DEE6EE; +} |