diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2005-10-24 12:29:26 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2005-10-24 12:29:26 +0200 |
commit | e1f97fae0ca169df8c293d5d090b58da072fabc5 (patch) | |
tree | 341c499b886365d31ee52e2d7d251f042c87b04b /template/default | |
parent | 8ed70947cc069fb98d9a281927ba0f289b0a6115 (diff) | |
download | vdradmin-am-e1f97fae0ca169df8c293d5d090b58da072fabc5.tar.gz vdradmin-am-e1f97fae0ca169df8c293d5d090b58da072fabc5.tar.bz2 |
2005-10-24: 0.97-am3.4.2rc2v0.97-am3.4.2rc2
- For VDR >=1.3.24 use VDR's timer flags for finding timers that are currently recording.
- Fixed sendmail notification for AutoTimer.
- If /usr/bin/locale is not available, language can be entered in textfield instead of chosing in selectbox.
- Fixed wrong display of double quotes in timer_list and at_timer_list.
Diffstat (limited to 'template/default')
-rw-r--r-- | template/default/config.html | 8 | ||||
-rw-r--r-- | template/default/copper/style.css | 3 | ||||
-rw-r--r-- | template/default/default/style.css | 7 | ||||
-rw-r--r-- | template/default/style.css | 3 |
4 files changed, 13 insertions, 8 deletions
diff --git a/template/default/config.html b/template/default/config.html index 45913c6..7bfd04d 100644 --- a/template/default/config.html +++ b/template/default/config.html @@ -95,11 +95,15 @@ <td class="col_left"></td> <td class="col_label"><h5><%! Language: !%></h5></td> <td class="col_value"> +<tmpl_if name="MY_LOCALES"> <select class="submit" name="LANG"> -<tmpl_loop name="MY_LOCALES"> + <tmpl_loop name="MY_LOCALES"> <option value="<tmpl_var id>" <tmpl_if cur>selected</tmpl_if>><tmpl_var name></option> -</tmpl_loop> + </tmpl_loop> </select> +<tmpl_else> + <input type="text" name="LANG" value="<tmpl_var LANG>" size="20" maxlength="50" /> +</tmpl_if> </td> <td class="col_right"></td> </tr> diff --git a/template/default/copper/style.css b/template/default/copper/style.css index bbb40c4..6bbb183 100644 --- a/template/default/copper/style.css +++ b/template/default/copper/style.css @@ -58,7 +58,8 @@ label + input { margin-left: 1em; } .col_duration { padding-left: 3px; padding-right: 3px; width: 120px; vertical-align: top; } .col_name, .col_title * { padding-left: 3px; padding-right: 3px; min-width: 50px; white-space: normal; } .col_info, .col_record { width: 65px; text-align: center; } -.col_active, .col_stream { width: 70px; max-width: 70px; } +.col_active { width: 75px; max-width: 75px; } +.col_stream { width: 70px; max-width: 70px; } .col_channel { width: 120px; } .col_start, .col_stop, .col_date, .col_time { width: 66px; text-align: right; } .col_edit, .col_delete, .col_checkbox { text-align: center; width: 30px; max-width: 30px; } diff --git a/template/default/default/style.css b/template/default/default/style.css index 35c50c8..71e9e81 100644 --- a/template/default/default/style.css +++ b/template/default/default/style.css @@ -130,9 +130,9 @@ label + input { .footer td.selected, .col_left, .col_right, -#timer_new .heading, -#at_timer_new .heading, -#rec_edit .heading { +#timer_new .group .heading, +#at_timer_new .group .heading, +#rec_edit .group .heading { display: none; } body.help .heading { @@ -316,7 +316,6 @@ body.help .heading { } .col_active { width: 70px; - max-width: 70px; } .col_channel { width: 120px; diff --git a/template/default/style.css b/template/default/style.css index 3ee4787..3f6be1b 100644 --- a/template/default/style.css +++ b/template/default/style.css @@ -59,7 +59,8 @@ label + input { margin-left: 1em; } .col_duration { padding-left: 3px; padding-right: 3px; width: 120px; vertical-align: top; } .col_name, .col_title * { padding-left: 3px; padding-right: 3px; min-width: 50px; white-space: normal; } .col_info, .col_record { width: 65px; text-align: center; } -.col_active, .col_stream { width: 70px; max-width: 70px; } +.col_active { width: 75px; max-width: 75px; } +.col_stream { width: 70px; max-width: 70px; } .col_channel { width: 120px; } .col_start, .col_stop, .col_date, .col_time { width: 66px; text-align: right; } .col_edit, .col_delete, .col_checkbox { text-align: center; width: 30px; max-width: 30px; } |