summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/freeside.css4
-rw-r--r--httemplate/elements/location.html12
-rw-r--r--httemplate/elements/tr-select-agent.html4
-rw-r--r--httemplate/elements/tr-select-cust_class.html2
-rw-r--r--httemplate/elements/tr-select-cust_tag.html2
-rw-r--r--httemplate/elements/tr-td-label.html7
6 files changed, 18 insertions, 13 deletions
diff --git a/httemplate/elements/freeside.css b/httemplate/elements/freeside.css
index 0dbc4142b..90b2d51b1 100644
--- a/httemplate/elements/freeside.css
+++ b/httemplate/elements/freeside.css
@@ -230,13 +230,13 @@ div.fstabcontainer {
.fsinnerbox {
/* background-color:#cccccc; */
padding:2px;
- border: 1px solid #cccccc;
+ border: 1px solid #999999;
border-radius: 2px;
}
.fsinnerbox th {
font-weight:normal;
- font-size:75%;
+ font-size:80%;
valign: bottom;
color: #666666;
}
diff --git a/httemplate/elements/location.html b/httemplate/elements/location.html
index 357a91db7..a7803c875 100644
--- a/httemplate/elements/location.html
+++ b/httemplate/elements/location.html
@@ -44,7 +44,7 @@ Example:
% if ( $label_prefix eq '_location' ) {
<TR>
- <TD ALIGN="right" ><% $opt{'locationname_label'} || emt('Location ID') %></TD>
+ <TH ALIGN="right" ><% $opt{'locationname_label'} || emt('Location ID') %></TD>
<TD COLSPAN=7>
<INPUT TYPE = "text"
NAME = "<%$pre%>locationname"
@@ -81,7 +81,7 @@ Example:
% if ( ! $opt{'alt_format'} ) { #regular format
<TR>
- <TD ALIGN="right"><FONT ID="<% $pre %>address2_required" color="#ff0000" <% $address2_label_style %>>*</FONT>&nbsp;<FONT ID="<% $pre %>address2_label" <% $address2_label_style %>><B>Unit&nbsp;#</B></FONT></TD>
+ <TH ALIGN="right"><FONT ID="<% $pre %>address2_required" color="#ff0000" <% $address2_label_style %>>*</FONT>&nbsp;<FONT ID="<% $pre %>address2_label" <% $address2_label_style %>><B>Unit&nbsp;#</B></FONT></TD>
<TD COLSPAN=7>
<INPUT TYPE = "text"
NAME = "<%$pre%>address2"
@@ -203,7 +203,7 @@ Example:
% if ( $opt{enable_coords} ) {
<TR>
- <TD ALIGN="right"><% mt('Latitude') |h %></TD>
+ <TH ALIGN="right"><% mt('Latitude') |h %></TD>
<TD COLSPAN=7>
<INPUT TYPE = "text"
NAME = "<%$pre%>latitude"
@@ -212,7 +212,7 @@ Example:
<% $disabled %>
<% $style %>
>
- <% mt('Longitude') |h %>
+ <FONT SIZE="-1" COLOR="#666666"><% mt('Longitude') |h %></FONT>
<INPUT TYPE = "text"
NAME = "<%$pre%>longitude"
ID = "<%$pre%>longitude"
@@ -234,13 +234,13 @@ Example:
%
% if ( $opt{enable_censustract} ) {
<TR>
- <TD ALIGN="right">Census&nbsp;tract</TD>
+ <TH ALIGN="right">Census&nbsp;tract</TD>
<TD COLSPAN=8>
<INPUT TYPE="text" SIZE=15
ID="<% $pre %>enter_censustract"
NAME="<% $pre %>enter_censustract"
VALUE="<% $object->censustract |h %>">
- <% '(automatic)' %>
+ <FONT SIZE="-1" COLOR="#333333"><% '(automatic)' %></FONT>
</TD>
</TR>
% }
diff --git a/httemplate/elements/tr-select-agent.html b/httemplate/elements/tr-select-agent.html
index 321bd6b32..04600fa8d 100644
--- a/httemplate/elements/tr-select-agent.html
+++ b/httemplate/elements/tr-select-agent.html
@@ -32,7 +32,7 @@ Example:
% if ( scalar(@agents) != 1 ) {
<TR>
- <TD ALIGN="right"><% $opt{'label'} || emt('Agent') %></TD>
+ <TH ALIGN="right"><% $opt{'label'} || emt('Agent') %></TD>
<TD BGCOLOR="#dddddd" <% $colspan %>>
% my $agent = qsearchs('agent', { 'agentnum' => $agentnum });
<% $agent ? $agent->agent : '(all)' |h %>
@@ -47,7 +47,7 @@ Example:
% } else {
<TR>
- <TD ALIGN="right"><% $opt{'label'} || emt('Agent') %></TD>
+ <TH ALIGN="right"><% $opt{'label'} || emt('Agent') %></TD>
<TD <% $colspan %>>
<& /elements/select-agent.html,
'curr_value' => $agentnum,
diff --git a/httemplate/elements/tr-select-cust_class.html b/httemplate/elements/tr-select-cust_class.html
index 54a11d79e..7a2321560 100644
--- a/httemplate/elements/tr-select-cust_class.html
+++ b/httemplate/elements/tr-select-cust_class.html
@@ -5,7 +5,7 @@
% } else {
<TR>
- <TD ALIGN="right"><% $opt{'label'} || 'Customer class' %></TD>
+ <TH ALIGN="right"><% $opt{'label'} || 'Customer class' %></TD>
<TD>
<% include( '/elements/select-cust_class.html',
'curr_value' => $classnum,
diff --git a/httemplate/elements/tr-select-cust_tag.html b/httemplate/elements/tr-select-cust_tag.html
index 76b1b715d..b133dcc15 100644
--- a/httemplate/elements/tr-select-cust_tag.html
+++ b/httemplate/elements/tr-select-cust_tag.html
@@ -1,7 +1,7 @@
% if ( ($curuser->access_right('Edit customer tags') && @part_tag) || $is_report ) {
<TR>
- <TD ALIGN="right"><% $opt{'label'} || 'Tags' %></TD>
+ <TH ALIGN="right"><% $opt{'label'} || 'Tags' %></TD>
<TD>
<% include( '/elements/select-cust_tag.html',
'curr_value' => \@curr_tagnum,
diff --git a/httemplate/elements/tr-td-label.html b/httemplate/elements/tr-td-label.html
index c318722dc..78690f1fb 100644
--- a/httemplate/elements/tr-td-label.html
+++ b/httemplate/elements/tr-td-label.html
@@ -1,6 +1,11 @@
+<%doc>
+
+Actually <TR> <TH> $label </TH>
+
+</%doc>
<TR>
- <TD ALIGN = "right"
+ <TH ALIGN = "right"
VALIGN = "<% $opt{'valign'} || 'top' %>"
STYLE = "<% $style %>"
ID = "<% $opt{label_id} || $opt{id}. '_label0' %>"