[Rt-commit] rtir branch, 5.0/fix-reply-to-font-size, created. 4.0.1rc1-165-g75b187ef
Aaron Trevena
ast at bestpractical.com
Wed Jun 3 09:40:58 EDT 2020
The branch, 5.0/fix-reply-to-font-size has been created
at 75b187efd545fd756b9e240e5fa98e98335bfb0d (commit)
- Log -----------------------------------------------------------------
commit 243fb291317fd22a0e7dce5e44cc923e0036ef8a
Author: Aaron Trevena <ast at bestpractical.com>
Date: Wed Jun 3 14:37:25 2020 +0100
Fix fontsize for correspondents in replies
Reduced font size in reply to all and reply to reporters, fix for ticket #228682
diff --git a/html/RTIR/Incident/Reply/index.html b/html/RTIR/Incident/Reply/index.html
index bb9c378a..026cf073 100644
--- a/html/RTIR/Incident/Reply/index.html
+++ b/html/RTIR/Incident/Reply/index.html
@@ -70,7 +70,7 @@
<div class="form-row">
<div class="col-12">
- <h2><&|/l&>Reporters</&></h2>
+ <h4><&|/l&>Reporters</&></h4>
<& /RTIR/Search/Elements/ShowResults,
BaseURL => $BaseURL,
BaseQuery => RT::IR->Query(Lifecycle => RT::IR->lifecycle_report, MemberOf => $id),
@@ -88,7 +88,7 @@
% if ( $All ) {
<div class="form-row">
<div class="col-12">
- <h2><&|/l&>Investigation Correspondents</&></h2>
+ <h4><&|/l&>Investigation Correspondents</&></h4>
<& /RTIR/Search/Elements/ShowResults,
BaseURL => $BaseURL,
BaseQuery => RT::IR->Query(Lifecycle => RT::IR->lifecycle_investigation, MemberOf => $id),
@@ -106,7 +106,7 @@
% unless( RT->Config->Get('RTIR_DisableCountermeasures') ) {
<div class="form-row">
<div class="col-12">
- <h2><&|/l&>Countermeasure Correspondents</&></h2>
+ <h4><&|/l&>Countermeasure Correspondents</&></h4>
<& /RTIR/Search/Elements/ShowResults,
BaseURL => $BaseURL,
BaseQuery => RT::IR->Query(Lifecycle => RT::IR->lifecycle_countermeasure, MemberOf => $id),
@@ -125,7 +125,7 @@
% }
% unless ( $candidates ) {
-<h2 class="no-recipients">Warning: no recipients!</h2>
+<h4 class="no-recipients">Warning: no recipients!</h4>
% }
<& ../Elements/ReplyForm, %ARGS,
commit 75b187efd545fd756b9e240e5fa98e98335bfb0d
Author: Aaron Trevena <ast at bestpractical.com>
Date: Wed Jun 3 14:40:05 2020 +0100
Fix fontsize for report title in linked tickets
Reduced font size in report title in linked tickets page, fix for ticket #22868
diff --git a/html/RTIR/Incident/Children/index.html b/html/RTIR/Incident/Children/index.html
index 187818e2..0a5554d8 100644
--- a/html/RTIR/Incident/Children/index.html
+++ b/html/RTIR/Incident/Children/index.html
@@ -51,9 +51,9 @@
<& /Elements/ListActions, actions => \@results &>
% if( $children->CountAll == $all_children->CountAll ) {
-<h2><% loc('Total [_1]: [_2]', RT::IR::TicketType(Lifecycle => $Lifecycle), $children->CountAll) %></h2>
+<h4><% loc('Total [_1]: [_2]', RT::IR::TicketType(Lifecycle => $Lifecycle), $children->CountAll) %></h4>
% } else {
-<h2><% loc('Total [_1]: [_2]([_3])', RT::IR::TicketType(Lifecycle => $Lifecycle), $children->CountAll, $all_children->CountAll) %></h2>
+<h4><% loc('Total [_1]: [_2]([_3])', RT::IR::TicketType(Lifecycle => $Lifecycle), $children->CountAll, $all_children->CountAll) %></h4>
% }
<form action="index.html" method="post">
-----------------------------------------------------------------------
More information about the rt-commit
mailing list