Skip to content

Commit

Permalink
Change timeline dates background color to grey
Browse files Browse the repository at this point in the history
The original layout with the yellow background for the timeline date
range did not look good.

Fixes #22031
  • Loading branch information
dregad committed Jan 30, 2017
1 parent 1913430 commit 078444f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/timeline_inc.php
Expand Up @@ -51,9 +51,9 @@
<?php
$t_short_date_format = config_get( 'short_date_format' );
echo '&#160;&#160;';
echo '<span class="label label-yellow"> ' . date( $t_short_date_format, $t_start_time ) . ' </span>';
echo '<span class="label label-grey"> ' . date( $t_short_date_format, $t_start_time ) . ' </span>';
echo ' .. ';
echo '<span class="label label-yellow"> ' . date( $t_short_date_format, $t_end_time ) . ' </span>';
echo '<span class="label label-grey"> ' . date( $t_short_date_format, $t_end_time ) . ' </span>';
echo '&#160;&#160;';

echo '<div class="btn-group">';
Expand Down

0 comments on commit 078444f

Please sign in to comment.