diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-10-27 12:00:31 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-10-27 12:00:31 +0200 |
commit | 24b39843b935f8a37b2d9dc909a530b771a61c1f (patch) | |
tree | 73869bd46144e37f32bdc6bff4f93453425f4951 /template/default/style.css | |
parent | 86c56591df441fad78ac69d2f77196df05305758 (diff) | |
download | vdradmin-am-3.5.0beta.tar.gz vdradmin-am-3.5.0beta.tar.bz2 |
2006-10-27: 3.5.0betav3.5.0beta
- Added: script to convert existing AutoTimers to epgsearch (autotimer2searchtimer.pl).
- Added: Hack for MSIE to always show vertical scroller to prevent horizontal scroller (Submitted by Udo Richter).
- Added: Support for epgsearch plugin; AutoTimer now considered deprecated and unsupported.
- Minor bugfixes
Diffstat (limited to 'template/default/style.css')
-rw-r--r-- | template/default/style.css | 89 |
1 files changed, 52 insertions, 37 deletions
diff --git a/template/default/style.css b/template/default/style.css index 30ca69f..0bcc6ff 100644 --- a/template/default/style.css +++ b/template/default/style.css @@ -1,5 +1,17 @@ +/* ugly MSIE6/7 hacks */ +/* always show vertical scroller to avoid horizontal scrolling on some pages */ +* html#scroller { + overflow-y: scroll; +} +/* avoid too small inputs/selects */ +*+html #epgsearch_new #use_extepg_settings table, +* html #epgsearch_new #use_extepg_settings table { + width: 30%; +} +/* END OF ugly MSIE hacks */ + * { - font-family: Verdana, Arial, Geneva, Helvetica, sans-serif; + font-family: Bitstream Vera Sans, Verdana, Arial, Geneva, Helvetica, sans-serif; } #rc, @@ -45,6 +57,7 @@ select { img { border: 0; vertical-align: middle; + display: inline; } /* .submit { @@ -150,8 +163,8 @@ body.help .heading { display: table-row; } -.row_odd -.row_even, +.row_odd td, +.row_even td, .heading { height: 17px; } @@ -194,11 +207,6 @@ body.help .heading { white-space: nowrap; } -.row_odd, -.row_even { - height: 25px; -} - .col_channels { text-align: right; padding: 10px; @@ -249,6 +257,9 @@ body.help .heading { text-align: center; width: 20px; } +.heading .action { + background-color: white; +} /* Summary */ #prog_summary .group { @@ -310,6 +321,10 @@ body.help .heading { padding: 2px 2px; } +#action_record_settings, +#action_switch_settings { + margin-top: 1em; +} .newday { height: 17px; background-color: #6d96a9; @@ -331,12 +346,16 @@ body.help .heading { } #prog_list .col_buttons, #rec_list .col_buttons, +#epgsearch_list .col_buttons, #prog_summary2 .col_buttons { width: 120px; text-align: right; padding-right: 3px; white-space: nowrap; } +#prog_summary2 table.percent td { + height: 8px; +} #prog_summary2 table.percent { height: 8px; width: 80px; @@ -523,6 +542,7 @@ body.help .heading { margin-top: 0.6em; } #timer_list .blackline { + height: 1px; background-color: black; } #timer_list .color_ok { @@ -537,7 +557,7 @@ body.help .heading { #timer_list .color_inactive { background-color: #858585; } -#timer_list #prgtable { +#timer_list .prgtable { border-left-color: #000000; border-right-color: #000000; } @@ -560,6 +580,29 @@ body.help .heading { padding: 0px; } +#epgsearch_new #use_extepg_settings { + white-space: normal; + vertical-align: top; +} +#epgsearch_new #use_extepg_settings table { + padding: 0 5px 5px 0; + display: inline; + float: left; + vertical-align: top; + height: 100%; +} +#epgsearch_new #use_extepg_settings table select, +#epgsearch_new #use_extepg_settings table input { + width: 100%; +} +#epgsearch_new #avoid_repeats_settings div { + white-space: normal; +} +#epgsearch_new #avoid_repeats_settings span { + float: left; + padding-right: 1em; +} + #content { margin-top: 0.6em; } @@ -588,31 +631,6 @@ body.help .heading { #config .col_label { width: 50%; } -.tabs td { - padding: 0; - margin: 0; - background-color: transparent; - border-bottom: 2px solid #6d96a9; -} -.tab_selected a { - color: white; - margin: 1px 3px; -} -.tab_unselected a { - color: black; - margin: 1px 3px; -} -.tab_selected { - border-right: 1px solid #6d96a9; - background-color: #6d96a9; - color: white; - font-weight: bold; -} -.tab_unselected { - border-right: 1px solid #6d96a9; - background-color: white; - color: black; -} #about .col_label { width: 20%; } @@ -755,9 +773,6 @@ select.channels { #navigation input { width: 140px; } -#navigation #epgsearch_list a { - color: green; -} /* message boxes */ .warning h1 { |