Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* App Calendar
  2. ******************************************************************************* */
  3. @import "../_bootstrap-extended/include";
  4. $calender-sidebar-width: 18.75rem !default;
  5. /* App Calendar specific */
  6. .app-calendar-wrapper {
  7. position: relative;
  8. .app-calendar-sidebar {
  9. position: absolute;
  10. z-index: 4;
  11. overflow: hidden;
  12. flex-basis: $calender-sidebar-width;
  13. flex-grow: 0;
  14. background-color: var(--#{$prefix}paper-bg);
  15. block-size: 100%;
  16. inline-size: $calender-sidebar-width;
  17. inset-inline-start: calc(-#{$calender-sidebar-width} - 1.2rem);
  18. transition: all .2s;
  19. &.show {
  20. inset-inline-start: 0;
  21. }
  22. .flatpickr-calendar {
  23. box-shadow: none;
  24. .flatpickr-month,
  25. .flatpickr-weekday,
  26. .flatpickr-weekdays {
  27. background: transparent;
  28. }
  29. .flatpickr-days {
  30. border: 0;
  31. }
  32. &:focus {
  33. outline: 0;
  34. }
  35. }
  36. }
  37. .app-calendar-content {
  38. position: relative;
  39. }
  40. .fc-toolbar {
  41. h2 {
  42. font-size: $h4-font-size;
  43. line-height: $h4-line-height;
  44. @include media-breakpoint-down(md) {
  45. font-size: 1rem;
  46. }
  47. }
  48. }
  49. .fc-toolbar-chunk {
  50. overflow: auto;
  51. }
  52. /* Set border 0 to app calender page only */
  53. table.fc-scrollgrid {
  54. border-inline-end: 0;
  55. border-inline-start: 0;
  56. th,
  57. td {
  58. border-inline-end: 0;
  59. }
  60. }
  61. .fc-timeGridDay-view,
  62. .fc-timeGridWeek-view {
  63. table.fc-scrollgrid {
  64. tbody {
  65. tr:not(.fc-scrollgrid-section:first-of-type) {
  66. td {
  67. border-block-end: 0;
  68. }
  69. }
  70. }
  71. }
  72. }
  73. .fc-dayGridMonth-view {
  74. table.fc-scrollgrid {
  75. td {
  76. border-block-end: 0;
  77. }
  78. }
  79. }
  80. .fc-header-toolbar {
  81. margin-block-end: 1.4rem !important;
  82. }
  83. .fc-view-container {
  84. margin-block: 0;
  85. margin-inline: -1.6rem;
  86. }
  87. .event-sidebar {
  88. .ql-editor {
  89. min-block-size: 5rem;
  90. }
  91. .select2 {
  92. .select2-selection__choice {
  93. .avatar {
  94. display: none;
  95. }
  96. }
  97. }
  98. }
  99. @include media-breakpoint-up(lg) {
  100. .app-calendar-sidebar {
  101. position: static;
  102. background-color: transparent;
  103. block-size: auto;
  104. .flatpickr-days {
  105. background-color: transparent;
  106. }
  107. }
  108. }
  109. }