blob: f7ab7d69b6bf0a474ab844ff9e4ac75ec9c709ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
timeago output is dynamic, which breaks when you print a page.
This CSS is only included when type: timeago
and ensures fallback to type "iso_date" when printing.
*/
.git-revision-date-localized-plugin-iso_date { display: none }
@media print {
.git-revision-date-localized-plugin-iso_date { display: inline }
.git-revision-date-localized-plugin-timeago { display: none }
}
|