Skip to content

Commit f2ff20a

Browse files
committed
Set right alignment for "Time" footer text
This should decrease the visual distance to timer value increasing readability.
1 parent 7b02194 commit f2ff20a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Designs/HitCounterGui.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@
355355
{
356356
new_tbl +=
357357
'<tr>' +
358-
'<td class="' + majorclass + ' bottom left">Time:</td>' + // Time
358+
'<td class="' + majorclass + ' bottom right">Time:</td>' + // Time
359359
'<td colspan="' + hit_cols + '" class="' + majorclass + ' bottom timestamp"><span id="time_total_footer">' + IntToTimeStr(total_time_current, true) + '</span></td>' + // Total Time (Footer)
360360
'<td colspan="' + (max_cols-1-hit_cols) + '" class="' + majorclass + ' bottom">&nbsp;</td>' + // Filler
361361
'</tr>';
@@ -364,7 +364,7 @@
364364
{
365365
new_tbl +=
366366
'<tr class="' + (d.high_contrast ? 'even' : '') + '">' +
367-
'<td colspan="' + max_cols + '" class="bottom timestamp left">Time: <span id="time_total_footer">' + IntToTimeStr(total_time_current, true) + '</span></td>' + // Total Time (Footer)
367+
'<td colspan="' + max_cols + '" class="bottom timestamp right">Time: <span id="time_total_footer">' + IntToTimeStr(total_time_current, true) + '</span></td>' + // Total Time (Footer)
368368
'</tr>';
369369
}
370370
}

0 commit comments

Comments
 (0)