YukiGasai / obsidian-google-calendar

Add Google Calendar inside Obsidian
https://yukigasai.github.io/obsidian-google-calendar/
GNU General Public License v3.0
359 stars 25 forks source link

Feature request: Strikethrough or remove past appointments in schedule view #153

Closed andy-cowley closed 1 year ago

andy-cowley commented 1 year ago

Current behaviour is a simple dynamic list, but it's difficult to see at a glance what is upcoming and what has passed. Having a strikethrough styling for events that have finished, or the option to hide finished events would be much better experience :)

YukiGasai commented 1 year ago

Hi, I think you are right. Do you think adding an opacity to finished events would achieve a similar effect? I believe strike-through is pretty hard to read.

YukiGasai commented 1 year ago

I added transparency to events that already happened. If you want to use a strike-through, you can add this custom CSS:

.gcal-schedule-pastEvent {
    text-decoration: line-through;
    opacity: 1 !important;
}