mirror of
https://github.com/tbergeron/obsidian-human-readable-dates.git
synced 2026-07-22 06:56:05 +00:00
29 lines
585 B
CSS
29 lines
585 B
CSS
/* Human Readable Dates Plugin Styles */
|
|
|
|
.human-readable-date-wrapper {
|
|
position: relative;
|
|
display: inline;
|
|
}
|
|
|
|
.human-readable-date {
|
|
cursor: help;
|
|
transition: color 0.2s ease, border-bottom-color 0.2s ease;
|
|
}
|
|
|
|
/* Ensure the overlay displays properly */
|
|
.human-readable-date-wrapper .human-readable-date {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.human-readable-date-link {
|
|
cursor: pointer;
|
|
color: var(--link-color);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.human-readable-date-plain {
|
|
cursor: text;
|
|
color: var(--text-accent);
|
|
font-style: italic;
|
|
}
|