No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

131 líneas
1.9 KiB

  1. @import './variables';
  2. .rbc-time-column {
  3. display: flex;
  4. flex-direction: column;
  5. min-height: 100%;
  6. .rbc-timeslot-group {
  7. flex: 1;
  8. }
  9. }
  10. .rbc-timeslot-group {
  11. border-bottom: 1px solid $cell-border;
  12. min-height: 40px;
  13. display: flex;
  14. flex-flow: column nowrap;
  15. }
  16. .rbc-time-gutter,
  17. .rbc-header-gutter {
  18. flex: none;
  19. }
  20. .rbc-label {
  21. padding: 0 5px;
  22. }
  23. .rbc-day-slot {
  24. position: relative;
  25. .rbc-events-container {
  26. bottom: 0;
  27. left: 0;
  28. position: absolute;
  29. right: 0;
  30. margin-right: 10px;
  31. top: 0;
  32. &.rbc-rtl {
  33. left: 10px;
  34. right: 0;
  35. }
  36. }
  37. .rbc-event {
  38. border: 1px solid $event-border;
  39. display: flex;
  40. max-height: 100%;
  41. min-height: 20px;
  42. flex-flow: column wrap;
  43. align-items: flex-start;
  44. overflow: hidden;
  45. position: absolute;
  46. }
  47. .rbc-event-label {
  48. flex: none;
  49. padding-right: 5px;
  50. width: auto;
  51. }
  52. .rbc-event-content {
  53. width: 100%;
  54. flex: 1 1 0;
  55. word-wrap: break-word;
  56. line-height: 1;
  57. height: 100%;
  58. min-height: 1em;
  59. }
  60. .rbc-time-slot {
  61. border-top: 1px solid lighten($cell-border, 10%);
  62. }
  63. }
  64. .rbc-time-view-resources {
  65. .rbc-time-gutter,
  66. .rbc-time-header-gutter {
  67. position: sticky;
  68. left: 0;
  69. background-color: white;
  70. border-right: 1px solid $cell-border;
  71. z-index: 10;
  72. margin-right: -1px;
  73. }
  74. .rbc-time-header {
  75. overflow: hidden;
  76. }
  77. .rbc-time-header-content {
  78. min-width: auto;
  79. flex: 1 0 0;
  80. flex-basis: 0px;
  81. }
  82. .rbc-time-header-cell-single-day {
  83. display: none;
  84. }
  85. .rbc-day-slot {
  86. min-width: 140px;
  87. }
  88. .rbc-header,
  89. .rbc-day-bg, {
  90. width: 140px;
  91. // min-width: 0;
  92. flex: 1 1 0;
  93. flex-basis: 0 px;
  94. }
  95. }
  96. .rbc-time-header-content + .rbc-time-header-content {
  97. margin-left: -1px;
  98. }
  99. .rbc-time-slot {
  100. flex: 1 0 0;
  101. &.rbc-now {
  102. font-weight: bold;
  103. }
  104. }
  105. .rbc-day-header {
  106. text-align: center;
  107. }