Advertisement
kabootles

Home Assistant Calendar YAML

Nov 7th, 2024
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. - type: custom:atomic-calendar-revive
  2. enableModeChange: true
  3. entities:
  4. - entity: calendar.holidays
  5. name: Holidays
  6. - entity: calendar.garbage_schedule
  7. name: Garbage Schedule
  8. - entity: calendar.birthdays
  9. name: Birthdays
  10. - entity: calendar.miscellaneous
  11. name: Miscellaneous
  12. defaultMode: Event
  13. hoursOnSameLine: true
  14. showMonth: false
  15. showAllDayHours: false
  16. showEventDate: true
  17. showCalendarName: false
  18. showLastCalendarWeek: false
  19. disableCalEventLink: false
  20. disableCalLocationLink: false
  21. showTimeRemaining: false
  22. showDatePerEvent: false
  23. showDate: false
  24. showLoader: false
  25. showRelativeTime: false
  26. compactMode: true
  27. showLocation: false
  28. showHours: false
  29. eventDateFormat: ddd D
  30. card_mod:
  31. style: |
  32. ha-card{
  33. box-shadow: none;
  34. border-top: 1px solid rgba(255, 255, 255, 0.2);
  35. border-radius: 0;
  36. padding: 0 !important;
  37. }
  38. ha-card .single-event-container{
  39. padding: 10px 0 !important;
  40. }
  41. ha-card .single-event-container:not(.daywrap):not(:first-child){
  42. padding-top: 0 !important;
  43. }
  44. ha-card .daywrap{
  45. border-top: 1px solid rgba(255, 255, 255, 0.2);
  46. }
  47. ha-card .event-left{
  48. width: 60px;
  49. }
  50. ha-card .single-event-container{
  51. line-height: 1.5em;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement