mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-22 23:54:46 +00:00
21 lines
397 B
SCSS
21 lines
397 B
SCSS
// Displays 'timesince' formatted date with full date on hover
|
|
.human-readable-date {
|
|
overflow: hidden;
|
|
display: block;
|
|
position: relative;
|
|
|
|
&:before {
|
|
position: absolute;
|
|
display: none;
|
|
content: attr(title);
|
|
}
|
|
|
|
&:hover {
|
|
visibility: hidden;
|
|
|
|
&:before {
|
|
visibility: visible;
|
|
display: block;
|
|
}
|
|
}
|
|
}
|