version 1.1467, 2025/03/01 17:20:16
|
version 1.1469, 2025/03/07 02:13:40
|
Line 966 ENDSCRT
|
Line 966 ENDSCRT
|
|
|
sub select_timezone { |
sub select_timezone { |
my ($name,$selected,$onchange,$includeempty,$id,$disabled)=@_; |
my ($name,$selected,$onchange,$includeempty,$id,$disabled)=@_; |
my $output='<select name="'.$name.'" '.$id.$onchange.$disabled.'>'."\n"; |
my $labeltext = &HTML::Entities::encode(&mt('Select Time Zone')); |
|
my $output='<select name="'.$name.'" '.$id.$onchange.$disabled. |
|
' aria-label="'.$labeltext.'">'."\n"; |
if ($includeempty) { |
if ($includeempty) { |
$output .= '<option value=""'; |
$output .= '<option value=""'; |
if (($selected eq '') || ($selected eq 'local')) { |
if (($selected eq '') || ($selected eq 'local')) { |
Line 1351 sub help_open_topic {
|
Line 1353 sub help_open_topic {
|
} |
} |
$template.=' <a'.$target.' href="'.$link.'" title="'.$title.'">' |
$template.=' <a'.$target.' href="'.$link.'" title="'.$title.'">' |
.'<img src="'.$helpicon.'" border="0"' |
.'<img src="'.$helpicon.'" border="0"' |
.' alt="'.&mt('Help: [_1]',$topic).'"' |
.' alt="'.&mt('Help icon').'"' |
.' title="'.$title.'" style="vertical-align:middle;"'.$imgid |
.' title="'.$title.'" style="vertical-align:middle;"'.$imgid |
.' /></a>'; |
.' /></a>'; |
if ($text ne "") { |
if ($text ne "") { |
Line 7506 div.LC_confirm_box .LC_success img {
|
Line 7508 div.LC_confirm_box .LC_success img {
|
padding: 4px; |
padding: 4px; |
} |
} |
|
|
table.LC_pastsubmission { |
.LC_pastsubmission { |
border: 1px solid black; |
border: 1px solid black; |
margin: 2px; |
margin: 2px; |
|
padding: 2px; |
} |
} |
|
|
table#LC_menubuttons { |
table#LC_menubuttons { |
Line 7762 table.LC_nested tr.LC_empty_row td {
|
Line 7765 table.LC_nested tr.LC_empty_row td {
|
table.LC_caption { |
table.LC_caption { |
} |
} |
|
|
|
caption.LC_caption_prefs { |
|
font-weight: normal; |
|
text-align: left; |
|
padding-bottom: 0.8em; |
|
} |
|
|
table.LC_nested tr.LC_empty_row td { |
table.LC_nested tr.LC_empty_row td { |
padding: 4ex |
padding: 4ex |
} |
} |
Line 7932 table.LC_data_table tr > td.LC_roles_sel
|
Line 7941 table.LC_data_table tr > td.LC_roles_sel
|
border-right: 8px solid #11CC55; |
border-right: 8px solid #11CC55; |
} |
} |
|
|
|
table.LC_data_table tr.LC_prefs_row { |
|
line-height: 250%; |
|
} |
|
|
span.LC_current_location { |
span.LC_current_location { |
font-size:larger; |
font-size:larger; |
background: $pgbg; |
background: $pgbg; |
Line 8314 div.LC_prob_status_inner {
|
Line 8327 div.LC_prob_status_inner {
|
padding: 5px; |
padding: 5px; |
} |
} |
|
|
|
caption.LC_filesub_status { |
|
text-align: left; |
|
font-weight: bold; |
|
} |
|
|
.LC_mail_actions { |
.LC_mail_actions { |
float: left; |
float: left; |
padding: 0; |
padding: 0; |
Line 10963 sub simple_error_page {
|
Line 10981 sub simple_error_page {
|
} |
} |
|
|
sub data_table_caption { |
sub data_table_caption { |
my $caption = shift; |
my ($caption,$css_class) = @_; |
return "<caption class=\"LC_caption\">$caption</caption>"; |
return "<caption class=\"LC_caption $css_class\">$caption</caption>"; |
} |
} |
} |
} |
|
|