You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 3 години
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. @import './variables';
  2. @import './reset';
  3. .rbc-calendar {
  4. box-sizing: border-box;
  5. height: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. align-items: stretch;
  9. }
  10. .rbc-calendar *,
  11. .rbc-calendar *:before,
  12. .rbc-calendar *:after {
  13. box-sizing: inherit;
  14. }
  15. .rbc-abs-full {
  16. overflow: hidden;
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. right: 0;
  21. bottom: 0;
  22. }
  23. .rbc-ellipsis {
  24. display: block;
  25. overflow: hidden;
  26. text-overflow: ellipsis;
  27. white-space: nowrap;
  28. }
  29. .rbc-rtl {
  30. direction: rtl;
  31. }
  32. .rbc-off-range {
  33. color: $out-of-range-color;
  34. }
  35. .rbc-off-range-bg {
  36. background: $out-of-range-bg-color;
  37. }
  38. .rbc-header {
  39. overflow: hidden;
  40. flex: 1 0 0%;
  41. text-overflow: ellipsis;
  42. white-space: nowrap;
  43. padding: 0 3px;
  44. text-align: center;
  45. vertical-align: middle;
  46. font-weight: bold;
  47. font-size: 90%;
  48. min-height: 0;
  49. border-bottom: 1px solid $cell-border;
  50. & + & {
  51. border-left: 1px solid $cell-border;
  52. }
  53. .rbc-rtl & + & {
  54. border-left-width: 0;
  55. border-right: 1px solid $cell-border;
  56. }
  57. & > a {
  58. &, &:active, &:visited {
  59. color: inherit;
  60. text-decoration: none;
  61. }
  62. }
  63. }
  64. .rbc-row-content {
  65. position: relative;
  66. user-select: none;
  67. -webkit-user-select: none;
  68. z-index: 4;
  69. }
  70. .rbc-today {
  71. background-color: $today-highlight-bg;
  72. }
  73. @import './toolbar';
  74. @import './event';
  75. @import './month';
  76. @import './agenda';
  77. @import './time-grid';