Skip to content

Commit 6856837

Browse files
committed
Some style fixes to keep things consistent after recent pull request integration.
1 parent adadeb1 commit 6856837

21 files changed

Lines changed: 29 additions & 29 deletions

WEB-INF/lib/ttReportHelper.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ static function prepareReportBody($bean, $comment)
10621062
$style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
10631063
$tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
10641064
$tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
1065-
$rowItem = 'background-color: #ccccce;';
1065+
$rowItem = 'background-color: #ffffff;';
10661066
$rowItemAlt = 'background-color: #f5f5f5;';
10671067
$rowSubtotal = 'background-color: #e0e0e0;';
10681068
$cellLeftAligned = 'text-align: left; vertical-align: top;';
@@ -1334,7 +1334,7 @@ static function prepareFavReportBody($report)
13341334
$style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
13351335
$tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
13361336
$tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
1337-
$rowItem = 'background-color: #ccccce;';
1337+
$rowItem = 'background-color: #ffffff;';
13381338
$rowItemAlt = 'background-color: #f5f5f5;';
13391339
$rowSubtotal = 'background-color: #e0e0e0;';
13401340
$cellLeftAligned = 'text-align: left; vertical-align: top;';

WEB-INF/templates/admin_teams.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</tr>
1818
{if $teams}
1919
{foreach $teams as $team}
20-
<tr bgcolor="{cycle values="#f5f5f5,#dedee5"}">
20+
<tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
2121
<td>{$team.id}</td>
2222
<td>{$team.name|escape}</td>
2323
<td nowrap>{$team.date}</td>

WEB-INF/templates/cf_custom_fields.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</tr>
1414
{if $custom_fields}
1515
{foreach $custom_fields as $field}
16-
<tr bgcolor="{cycle values="#f5f5f5,#dedee5"}">
16+
<tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
1717
<td>{$field['label']|escape}</td>
1818
{if CustomFields::TYPE_TEXT == $field['type']}
1919
<td>{$i18n.label.type_text}</td>

WEB-INF/templates/cf_dropdown_options.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</tr>
1616
{if $options}
1717
{foreach $options as $key=>$val}
18-
<tr bgcolor="{cycle values="#f5f5f5,#dedee5"}">
18+
<tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
1919
<td>{$val|escape}</td>
2020
<td><a href="cf_dropdown_option_edit.php?id={$key}">{$i18n.label.edit}</a></td>
2121
<td><a href="cf_dropdown_option_delete.php?id={$key}">{$i18n.label.delete}</a></td>

WEB-INF/templates/expense_delete.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<td class="tableHeader" align="center">{$i18n.label.item}</td>
1515
<td class="tableHeader" align="center">{$i18n.label.cost}</td>
1616
</tr>
17-
<tr bgcolor="{cycle values="#f5f5f5,#ccccce"}">
17+
<tr>
1818
{if $user->isPluginEnabled('cl')}
1919
<td>{$expense_item.client_name|escape}</td>
2020
{/if}

WEB-INF/templates/expenses.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ function recalculateCost() {
179179
<td width="5%" class="tableHeader">{$i18n.label.edit}</td>
180180
</tr>
181181
{foreach $expense_items as $item}
182-
<tr bgcolor="{cycle values="#f5f5f5,#ccccce"}">
182+
<tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
183183
{if $user->isPluginEnabled('cl')}
184184
<td valign="top">{$item.client|escape}</td>
185185
{/if}

WEB-INF/templates/footer.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<br>
1313
<table cellspacing="0" cellpadding="4" width="100%" border="0">
1414
<tr>
15-
<td align="center">&nbsp;Anuko Time Tracker 1.12.3.3684 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
15+
<td align="center">&nbsp;Anuko Time Tracker 1.12.3.3685 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
1616
<a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
1717
<a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
1818
<a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>

WEB-INF/templates/invoice_view.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<td class="tableHeaderCentered" width="5%">{$i18n.label.cost}</td>
3232
</tr>
3333
{foreach $invoice_items as $invoice_item}
34-
<tr bgcolor="{cycle values="#f5f5f5,#ccccce"}">
34+
<tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
3535
<td valign="top">{$invoice_item.date}</td>
3636
<td valign="top">{$invoice_item.user_name|escape}</td>
3737
{if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}

WEB-INF/templates/invoices.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{/if}
1818
</tr>
1919
{foreach $invoices as $invoice}
20-
<tr valign="top" bgcolor="{cycle values="#f5f5f5,#dedee5"}">
20+
<tr valign="top" bgcolor="{cycle values="#f5f5f5,#ffffff"}">
2121
<td>{$invoice.name|escape}</td>
2222
<td>{$invoice.client_name|escape}</td>
2323
<td>{$invoice.date}</td>

WEB-INF/templates/mobile/clients.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<td width="40%" class="tableHeader">{$i18n.label.address}</td>
1616
</tr>
1717
{foreach $active_clients as $client}
18-
<tr valign="top" bgcolor="{cycle values="#f5f5f5,#dedee5"}">
18+
<tr valign="top" bgcolor="{cycle values="#f5f5f5,#ffffff"}">
1919
<td><a href="client_edit.php?id={$client.id}">{$client.name|escape}</a></td>
2020
<td>{$client.address|escape}</td>
2121
</tr>
@@ -34,7 +34,7 @@
3434
<td width="40%" class="tableHeader">{$i18n.label.address}</td>
3535
</tr>
3636
{foreach $inactive_clients as $client}
37-
<tr valign="top" bgcolor="{cycle values="#f5f5f5,#dedee5"}">
37+
<tr valign="top" bgcolor="{cycle values="#f5f5f5,#ffffff"}">
3838
<td><a href="client_edit.php?id={$client.id}">{$client.name|escape}</a></td>
3939
<td>{$client.address|escape}</td>
4040
</tr>

0 commit comments

Comments
 (0)