CSS: Add text-small to time-since, -until and -ago

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-24 10:28:56 +02:00
parent cde0027b6f
commit 27f3dd94d2
1 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ $this->addHelperFunction('timeAgo', function ($time, $timeOnly = false) {
return '';
}
return sprintf(
'<span class="time-ago" title="%s">%s</span>',
'<span class="text-small time-ago" title="%s">%s</span>',
DateFormatter::formatDateTime($time),
DateFormatter::timeAgo($time, $timeOnly)
);
@ -54,7 +54,7 @@ $this->addHelperFunction('timeSince', function ($time, $timeOnly = false) {
return '';
}
return sprintf(
'<span class="time-since" title="%s">%s</span>',
'<span class="text-small time-since" title="%s">%s</span>',
DateFormatter::formatDateTime($time),
DateFormatter::timeSince($time, $timeOnly)
);
@ -65,7 +65,7 @@ $this->addHelperFunction('timeUntil', function ($time, $timeOnly = false) {
return '';
}
return sprintf(
'<span class="time-until" title="%s">%s</span>',
'<span class="text-small time-until" title="%s">%s</span>',
DateFormatter::formatDateTime($time),
DateFormatter::timeUntil($time, $timeOnly)
);