25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

74 lines
1.2 KiB

  1. @import './variables';
  2. .rbc-agenda-view {
  3. display: flex;
  4. flex-direction: column;
  5. flex: 1 0 0;
  6. overflow: auto;
  7. table.rbc-agenda-table {
  8. width: 100%;
  9. border: 1px solid $cell-border;
  10. border-spacing: 0;
  11. border-collapse: collapse;
  12. tbody > tr > td {
  13. padding: 5px 10px;
  14. vertical-align: top;
  15. }
  16. .rbc-agenda-time-cell {
  17. padding-left: 15px;
  18. padding-right: 15px;
  19. text-transform: lowercase;
  20. }
  21. tbody > tr > td + td {
  22. border-left: 1px solid $cell-border;
  23. }
  24. .rbc-rtl & {
  25. tbody > tr > td + td {
  26. border-left-width: 0;
  27. border-right: 1px solid $cell-border;
  28. }
  29. }
  30. tbody > tr + tr {
  31. border-top: 1px solid $cell-border;
  32. }
  33. thead > tr > th {
  34. padding: 3px 5px;
  35. text-align: left;
  36. border-bottom: 1px solid $cell-border;
  37. .rbc-rtl & {
  38. text-align: right;
  39. }
  40. }
  41. }
  42. }
  43. .rbc-agenda-time-cell {
  44. text-transform: lowercase;
  45. .rbc-continues-after:after {
  46. content: ' »'
  47. }
  48. .rbc-continues-prior:before {
  49. content: '« '
  50. }
  51. }
  52. .rbc-agenda-date-cell,
  53. .rbc-agenda-time-cell {
  54. white-space: nowrap;
  55. }
  56. .rbc-agenda-event-cell {
  57. width: 100%
  58. }