[Rt-commit] r4129 - in rt/branches/3.5-TESTING: . html/Elements
html/NoAuth/css/3.4-compat html/NoAuth/css/3.5-default
html/Ticket html/Widgets
trs at bestpractical.com
trs at bestpractical.com
Mon Nov 21 19:59:59 EST 2005
Author: trs
Date: Mon Nov 21 19:59:58 2005
New Revision: 4129
Added:
rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/login.css
rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/misc.css
Modified:
rt/branches/3.5-TESTING/ (props changed)
rt/branches/3.5-TESTING/html/Elements/Login
rt/branches/3.5-TESTING/html/Elements/QueueSummary
rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/main.css
rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/quickbar.css
rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/titlebox.css
rt/branches/3.5-TESTING/html/NoAuth/css/3.5-default/titlebox.css
rt/branches/3.5-TESTING/html/Ticket/Reminders.html
rt/branches/3.5-TESTING/html/Widgets/TitleBoxEnd
Log:
r6509 at wintermute: tom | 2005-11-21 19:58:59 -0500
* Couple of merge/typo bug fixes
* Improved 3.4-compat styles, still need IE testing though
Modified: rt/branches/3.5-TESTING/html/Elements/Login
==============================================================================
--- rt/branches/3.5-TESTING/html/Elements/Login (original)
+++ rt/branches/3.5-TESTING/html/Elements/Login Mon Nov 21 19:59:58 2005
@@ -70,7 +70,7 @@
%# End of div#quickbar from /Elements/Header
</div>
-<div id="body">
+<div id="body" class="login-body">
% if ($Error) {
<&| "/Widgets/TitleBox", title => loc('Error'), hideable => 0 &>
Modified: rt/branches/3.5-TESTING/html/Elements/QueueSummary
==============================================================================
--- rt/branches/3.5-TESTING/html/Elements/QueueSummary (original)
+++ rt/branches/3.5-TESTING/html/Elements/QueueSummary Mon Nov 21 19:59:58 2005
@@ -45,9 +45,9 @@
%# END BPS TAGGED BLOCK }}}
<table border="0" cellspacing="0" cellpadding="1" width="100%">
<tr>
- <th class="collection-as-table" align="left"><&|/l&>Queue</&></th>
+ <th class="collection-as-table"><&|/l&>Queue</&></th>
% for my $condition (@$conditions) {
- <th class="collection-as-table" align="right"><% $condition->{name} %></th>
+ <th class="collection-as-table"><% $condition->{name} %></th>
% }
</tr>
% my $i;
Added: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/login.css
==============================================================================
--- (empty file)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/login.css Mon Nov 21 19:59:58 2005
@@ -0,0 +1,7 @@
+#body.login-body {
+ width: 98%;
+}
+
+#login-box {
+ width: 30em;
+}
Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/main.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/main.css (original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/main.css Mon Nov 21 19:59:58 2005
@@ -62,4 +62,7 @@
@import "forms.css";
@import "transactions.css";
@import "ticket.css";
+ at import "login.css";
+ at import "quickbar.css";
+ at import "misc.css";
Added: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/misc.css
==============================================================================
--- (empty file)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/misc.css Mon Nov 21 19:59:58 2005
@@ -0,0 +1,2 @@
+.oddline { background: white; }
+.evenline { background: #cecfef; }
Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/quickbar.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/quickbar.css (original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/quickbar.css Mon Nov 21 19:59:58 2005
@@ -1,3 +1,7 @@
+#quickbar {
+ border: 1px solid transparent;
+}
+
#quickbar #quick-personal {
display: inline;
color: #888;
Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/titlebox.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/titlebox.css (original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/titlebox.css Mon Nov 21 19:59:58 2005
@@ -2,6 +2,10 @@
margin: 0.5em 0;
}
+.titlebox .titlebox-content {
+ padding: 0.05em;
+}
+
.titlebox .titlebox-title {
background: #069;
padding: 0.2em 0.5em;
@@ -25,3 +29,28 @@
#body .titlebox .titlebox-title .widget :link, #body .titlebox .titlebox-title .widget :visited {
color: black;
}
+
+.titlebox .titlebox-content hr.clear {
+ visibility: hidden;
+}
+
+%# TRS: I wish there was a more elegant way to do this... I essentially need to
+%# select all elements X that do NOT have element Y as a descendant... which I can
+%# fake with the child selector of CSS2, but IE is stupid and does not support that.
+
+% for (qw(index
+% Search-Build
+% User-Prefs
+% Approvals
+% Admin-Users-Modify
+% SelfService
+% SelfService-Closed
+% Ticket-ModifyAll
+% ))
+% {
+#comp-<%$_%> .titlebox .titlebox-content,
+% }
+.titlebox .titlebox .titlebox-content
+{
+ background: #cecfce;
+}
Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.5-default/titlebox.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.5-default/titlebox.css (original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.5-default/titlebox.css Mon Nov 21 19:59:58 2005
@@ -124,3 +124,7 @@
{
text-decoration: underline;
}
+
+.titlebox .titlebox-content hr.clear {
+ visibility: hidden;
+}
Modified: rt/branches/3.5-TESTING/html/Ticket/Reminders.html
==============================================================================
--- rt/branches/3.5-TESTING/html/Ticket/Reminders.html (original)
+++ rt/branches/3.5-TESTING/html/Ticket/Reminders.html Mon Nov 21 19:59:58 2005
@@ -49,7 +49,7 @@
current_tab => "Ticket/Reminders.html?id=".$Ticket->Id,
Title => loc("Reminders for ticket #[_1]", $Ticket->Id) &>
<form action="<%$RT::WebPath%>/Ticket/Reminders.html" method="post">
-<&|/Widget/TitleBox, title => loc("Reminders"),
+<&|/Widgets/TitleBox, title => loc("Reminders"),
title_class=> 'inverse',
color => "#666699" &>
Modified: rt/branches/3.5-TESTING/html/Widgets/TitleBoxEnd
==============================================================================
--- rt/branches/3.5-TESTING/html/Widgets/TitleBoxEnd (original)
+++ rt/branches/3.5-TESTING/html/Widgets/TitleBoxEnd Mon Nov 21 19:59:58 2005
@@ -43,6 +43,7 @@
%# those contributions and any derivatives thereof.
%#
%# END BPS TAGGED BLOCK }}}
+ <hr class="clear" />
</div>
</div>
More information about the Rt-commit
mailing list