2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

don't allow relative dates to wrap

This commit is contained in:
Jeff Atwood 2016-02-06 14:22:46 -08:00
parent 9a83100529
commit d81728f70d

View file

@ -219,3 +219,17 @@ body {
display: inline-block; display: inline-block;
} }
} }
// don't wrap relative dates, we want
//
// Jul 26, '15
//
// not
//
// Jul
// 26,
// '15
//
span.relative-date {
white-space:nowrap;
}