[Rt-commit] [svn] r1666 - in rt/branches/3.3-TESTING: .
html/Elements/CollectionAsTable html/NoAuth
jesse at pallas.eruditorum.org
jesse at pallas.eruditorum.org
Wed Oct 20 01:47:05 EDT 2004
Author: jesse
Date: Wed Oct 20 01:47:04 2004
New Revision: 1666
Modified:
rt/branches/3.3-TESTING/ (props changed)
rt/branches/3.3-TESTING/html/Elements/CollectionAsTable/Header
rt/branches/3.3-TESTING/html/Elements/CollectionAsTable/Row
rt/branches/3.3-TESTING/html/NoAuth/webrt.css
Log:
r6051 at tinbook: jesse | 2004-10-20T05:39:54.597284Z
RT-Ticket: 5837
RT-Status: resolved
RT-Update: correspond
Moved more ticket listing style to the CSS and out of the html, per the suggestion of Dirk Pape
Modified: rt/branches/3.3-TESTING/html/Elements/CollectionAsTable/Header
==============================================================================
--- rt/branches/3.3-TESTING/html/Elements/CollectionAsTable/Header (original)
+++ rt/branches/3.3-TESTING/html/Elements/CollectionAsTable/Header Wed Oct 20 01:47:04 2004
@@ -47,7 +47,7 @@
$item = 0;
}
else {
- $m->out('<TH align="center">');
+ $m->out('<TH class="collection-as-table">');
my $title = $col->{title};
$title =~ s/^__(.*)__$/$1/o;
$title = ( $m->comp('/Elements/RT__Ticket/ColumnMap',
Modified: rt/branches/3.3-TESTING/html/Elements/CollectionAsTable/Row
==============================================================================
--- rt/branches/3.3-TESTING/html/Elements/CollectionAsTable/Row (original)
+++ rt/branches/3.3-TESTING/html/Elements/CollectionAsTable/Row Wed Oct 20 01:47:04 2004
@@ -47,7 +47,7 @@
next;
}
$item++;
- $m->out('<td align="left">');
+ $m->out('<td class="collection-as-table">');
foreach my $subcol ( @{ $column->{output} } ) {
if ( $subcol =~ /^__(.*?)__$/o ) {
my $col = $1;
Modified: rt/branches/3.3-TESTING/html/NoAuth/webrt.css
==============================================================================
--- rt/branches/3.3-TESTING/html/NoAuth/webrt.css (original)
+++ rt/branches/3.3-TESTING/html/NoAuth/webrt.css Wed Oct 20 01:47:04 2004
@@ -599,6 +599,10 @@
margin-top: .5em;
}
+TH.collection-as-table { text-align: center;}
+
+TD.collection-as-table { text-align: left;}
+
%# Provide a callback for adding/modifying the style sheet.
%# http://www.w3.org/TR/REC-CSS1 - section 3.2, says:
%# "latter specified rule wins"
More information about the Rt-commit
mailing list