VCalendarInterval.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .v-calendar-day__row-with-label {
  2. display: grid;
  3. grid-template-columns: 48px 8px 1fr;
  4. border-right: thin solid #e0e0e0;
  5. }
  6. .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
  7. position: relative;
  8. border-right: thin solid #e0e0e0;
  9. }
  10. .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
  11. content: "";
  12. border-bottom: thin solid #e0e0e0;
  13. position: absolute;
  14. width: 100%;
  15. margin-top: -1px;
  16. z-index: 3;
  17. pointer-events: none;
  18. }
  19. .v-calendar-day__row-with-label .v-calendar-day__row-label {
  20. font-size: 10px;
  21. text-align: center;
  22. position: relative;
  23. top: -8px;
  24. }
  25. .v-calendar-day__row-with-label .v-calendar-day__row-content {
  26. border-bottom: thin solid #e0e0e0;
  27. }
  28. .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
  29. border-bottom: none;
  30. }
  31. .v-calendar-day__row-without-label {
  32. display: grid;
  33. grid-template-columns: 1fr;
  34. border-right: thin solid #e0e0e0;
  35. }
  36. .v-calendar-day__row-without-label .v-calendar-day__row-content {
  37. overflow: hidden;
  38. border-bottom: thin solid #e0e0e0;
  39. }
  40. .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
  41. border-bottom: none;
  42. }