app-calendar.css 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. .fc .fc-toolbar {
  2. flex-wrap: wrap;
  3. flex-direction: row !important; }
  4. .fc .fc-toolbar .fc-prev-button,
  5. .fc .fc-toolbar .fc-next-button {
  6. display: inline-block;
  7. background-color: transparent;
  8. border-color: transparent; }
  9. .fc .fc-toolbar .fc-prev-button .fc-icon,
  10. .fc .fc-toolbar .fc-next-button .fc-icon {
  11. color: #6e6b7b; }
  12. .fc .fc-toolbar .fc-prev-button:hover, .fc .fc-toolbar .fc-prev-button:active, .fc .fc-toolbar .fc-prev-button:focus,
  13. .fc .fc-toolbar .fc-next-button:hover,
  14. .fc .fc-toolbar .fc-next-button:active,
  15. .fc .fc-toolbar .fc-next-button:focus {
  16. background-color: transparent !important;
  17. border-color: transparent !important;
  18. box-shadow: none !important; }
  19. .fc .fc-toolbar .fc-prev-button {
  20. padding-left: 0 !important; }
  21. .fc .fc-toolbar .fc-toolbar-chunk:first-child {
  22. display: flex;
  23. align-items: center;
  24. flex-wrap: wrap; }
  25. .fc .fc-toolbar .fc-button {
  26. padding: 0.438rem 0.5rem; }
  27. .fc .fc-toolbar .fc-button:active, .fc .fc-toolbar .fc-button:focus {
  28. box-shadow: none; }
  29. .fc .fc-toolbar .fc-button-group .fc-button {
  30. text-transform: capitalize; }
  31. .fc .fc-toolbar .fc-button-group .fc-button:focus {
  32. box-shadow: none; }
  33. .fc .fc-toolbar .fc-button-group .fc-button-primary:not(.fc-prev-button):not(.fc-next-button) {
  34. background-color: transparent;
  35. border-color: #7367f0;
  36. color: #7367f0; }
  37. .fc .fc-toolbar .fc-button-group .fc-button-primary:not(.fc-prev-button):not(.fc-next-button).fc-button-active, .fc .fc-toolbar .fc-button-group .fc-button-primary:not(.fc-prev-button):not(.fc-next-button):hover {
  38. background-color: rgba(115, 103, 240, 0.2) !important;
  39. border-color: #7367f0 !important;
  40. color: #7367f0; }
  41. .fc .fc-toolbar .fc-button-group .fc-button-primary.fc-sidebarToggle-button {
  42. border: 0; }
  43. .fc .fc-toolbar .fc-button-group .fc-button-primary.fc-sidebarToggle-button i,
  44. .fc .fc-toolbar .fc-button-group .fc-button-primary.fc-sidebarToggle-button svg {
  45. height: 21px;
  46. width: 21px;
  47. font-size: 21px; }
  48. .fc .fc-toolbar .fc-button-group .fc-sidebarToggle-button {
  49. padding-left: 0;
  50. background-color: transparent !important;
  51. color: #6e6b7b !important; }
  52. .fc .fc-toolbar .fc-button-group .fc-sidebarToggle-button:not(.fc-prev-button):not(.fc-next-button):hover {
  53. background-color: transparent !important; }
  54. .fc .fc-toolbar .fc-button-group .fc-sidebarToggle-button + div {
  55. margin-left: 0; }
  56. .fc .fc-toolbar .fc-button-group .fc-dayGridMonth-button,
  57. .fc .fc-toolbar .fc-button-group .fc-timeGridWeek-button,
  58. .fc .fc-toolbar .fc-button-group .fc-timeGridDay-button,
  59. .fc .fc-toolbar .fc-button-group .fc-listMonth-button {
  60. padding: 0.55rem 1.5rem; }
  61. .fc .fc-toolbar .fc-button-group .fc-dayGridMonth-button:last-child, .fc .fc-toolbar .fc-button-group .fc-dayGridMonth-button:first-child,
  62. .fc .fc-toolbar .fc-button-group .fc-timeGridWeek-button:last-child,
  63. .fc .fc-toolbar .fc-button-group .fc-timeGridWeek-button:first-child,
  64. .fc .fc-toolbar .fc-button-group .fc-timeGridDay-button:last-child,
  65. .fc .fc-toolbar .fc-button-group .fc-timeGridDay-button:first-child,
  66. .fc .fc-toolbar .fc-button-group .fc-listMonth-button:last-child,
  67. .fc .fc-toolbar .fc-button-group .fc-listMonth-button:first-child {
  68. border-radius: 0.358rem; }
  69. .fc .fc-toolbar .fc-button-group .fc-dayGridMonth-button:first-child,
  70. .fc .fc-toolbar .fc-button-group .fc-timeGridWeek-button:first-child,
  71. .fc .fc-toolbar .fc-button-group .fc-timeGridDay-button:first-child,
  72. .fc .fc-toolbar .fc-button-group .fc-listMonth-button:first-child {
  73. border-top-right-radius: 0;
  74. border-bottom-right-radius: 0; }
  75. .fc .fc-toolbar .fc-button-group .fc-dayGridMonth-button:last-child,
  76. .fc .fc-toolbar .fc-button-group .fc-timeGridWeek-button:last-child,
  77. .fc .fc-toolbar .fc-button-group .fc-timeGridDay-button:last-child,
  78. .fc .fc-toolbar .fc-button-group .fc-listMonth-button:last-child {
  79. border-top-left-radius: 0;
  80. border-bottom-left-radius: 0; }
  81. .fc .fc-toolbar > * > :not(:first-child) {
  82. margin-left: 0rem; }
  83. .fc .fc-toolbar .fc-toolbar-title {
  84. margin-left: 0.25rem; }
  85. .fc .fc-toolbar .fc--button:empty,
  86. .fc .fc-toolbar .fc-toolbar-chunk:empty {
  87. display: none; }
  88. .fc tbody td,
  89. .fc thead th {
  90. border-color: #ebe9f1; }
  91. .fc tbody td.fc-col-header-cell,
  92. .fc thead th.fc-col-header-cell {
  93. border-right: 0;
  94. border-left: 0; }
  95. .fc .fc-view-harness {
  96. min-height: 650px; }
  97. .fc .fc-scrollgrid-section-liquid > td {
  98. border-bottom: 0; }
  99. .fc .fc-daygrid-event-harness .fc-event {
  100. font-size: 0.8rem;
  101. font-weight: 600;
  102. padding: 0.25rem 0.5rem; }
  103. .fc .fc-daygrid-event-harness + .fc-daygrid-event-harness {
  104. margin-top: 0.3rem !important; }
  105. .fc .fc-daygrid-day-bottom {
  106. margin-top: 0.3rem !important; }
  107. .fc .fc-daygrid-day {
  108. padding: 5px; }
  109. .fc .fc-daygrid-day .fc-daygrid-day-top {
  110. flex-direction: row; }
  111. .fc .fc-daygrid-day-number,
  112. .fc .fc-timegrid-slot-label-cushion,
  113. .fc .fc-list-event-time {
  114. color: #6e6b7b; }
  115. .fc .fc-day-today {
  116. background: #f8f8f8 !important;
  117. background-color: #f8f8f8 !important; }
  118. .fc .fc-timegrid .fc-scrollgrid-section .fc-col-header-cell,
  119. .fc .fc-timegrid .fc-scrollgrid-section .fc-timegrid-axis {
  120. border-color: #ebe9f1;
  121. border-left: 0;
  122. border-right: 0; }
  123. .fc .fc-timegrid .fc-scrollgrid-section .fc-timegrid-axis {
  124. border-color: #ebe9f1; }
  125. .fc .fc-timegrid .fc-timegrid-axis.fc-scrollgrid-shrink .fc-timegrid-axis-cushion {
  126. text-transform: capitalize;
  127. color: #b9b9c3; }
  128. .fc .fc-timegrid .fc-timegrid-slots .fc-timegrid-slot {
  129. height: 3rem; }
  130. .fc .fc-timegrid .fc-timegrid-slots .fc-timegrid-slot .fc-timegrid-slot-label-frame {
  131. text-align: center; }
  132. .fc .fc-timegrid .fc-timegrid-slots .fc-timegrid-slot .fc-timegrid-slot-label-frame .fc-timegrid-slot-label-cushion {
  133. text-transform: uppercase; }
  134. .fc .fc-timegrid .fc-timegrid-divider {
  135. display: none; }
  136. .fc .fc-list {
  137. border-color: #ebe9f1; }
  138. .fc .fc-list .fc-list-day-cushion {
  139. background: #f8f8f8; }
  140. .fc .fc-list .fc-list-event:hover td {
  141. background-color: #f8f8f8; }
  142. .fc .fc-list .fc-list-event td {
  143. border-color: #ebe9f1; }
  144. .app-calendar {
  145. position: relative;
  146. border-radius: 0.428rem;
  147. margin-bottom: 2rem; }
  148. .app-calendar .app-calendar-sidebar {
  149. position: absolute;
  150. left: calc(-18rem - 1.2rem);
  151. width: 18rem;
  152. height: 100%;
  153. z-index: 5;
  154. background-color: #fff;
  155. border-right: 1px solid #ebe9f1;
  156. flex-basis: 18rem;
  157. transition: all 0.2s, background 0s, border 0s; }
  158. .app-calendar .app-calendar-sidebar.show {
  159. left: 0; }
  160. .app-calendar .app-calendar-sidebar .sidebar-content-title {
  161. font-size: 0.85rem;
  162. color: #b9b9c3;
  163. text-transform: uppercase;
  164. letter-spacing: 0.6px; }
  165. .app-calendar .app-calendar-sidebar .select-all ~ label,
  166. .app-calendar .app-calendar-sidebar .input-filter ~ label {
  167. color: #5e5873;
  168. font-weight: 500;
  169. letter-spacing: 0.4px; }
  170. .app-calendar .event-sidebar {
  171. position: absolute;
  172. top: 0;
  173. right: 0;
  174. width: 400px;
  175. z-index: 15;
  176. transform: translateX(120%);
  177. transition: all 0.3s ease-in-out; }
  178. .app-calendar .event-sidebar .card {
  179. height: calc(100vh - 12.96rem);
  180. height: calc(var(--vh, 1vh) * 100 - 12.96rem);
  181. border-radius: 0 0.25rem 0.25rem 0; }
  182. .app-calendar .event-sidebar .card .close-bar {
  183. cursor: pointer; }
  184. .app-calendar .event-sidebar .card .todo-item-action {
  185. width: 6rem; }
  186. .app-calendar .event-sidebar .card .todo-item-action .todo-item-info,
  187. .app-calendar .event-sidebar .card .todo-item-action .todo-item-favorite,
  188. .app-calendar .event-sidebar .card .todo-item-action .dropdown {
  189. cursor: pointer;
  190. line-height: 1.5; }
  191. .app-calendar .event-sidebar .card .todo-item-action .dropdown .dropdown-menu .dropdown-item {
  192. padding: 0.14rem 1.428rem; }
  193. .app-calendar .event-sidebar .card .todo-item-action .dropdown-toggle::after {
  194. display: none; }
  195. .app-calendar .event-sidebar.show {
  196. transform: translateX(0); }
  197. .app-calendar .fc-toolbar h2 {
  198. font-size: 1.45rem; }
  199. .app-calendar .fc-header-toolbar {
  200. margin-bottom: 1.75rem !important; }
  201. .app-calendar .fc-view-harness {
  202. margin: 0 -1.6rem; }
  203. .app-calendar .fc-scrollgrid {
  204. border-color: #ebe9f1; }
  205. .app-calendar .fc-day-past .fc-daygrid-day-number,
  206. .app-calendar .fc-day-future .fc-daygrid-day-number {
  207. color: #b9b9c3; }
  208. .app-calendar .fc-popover {
  209. box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1); }
  210. .app-calendar .fc-popover .fc-popover-header {
  211. background: transparent;
  212. padding: 0.5rem; }
  213. .app-calendar .fc-popover .fc-popover-header .fc-popover-title,
  214. .app-calendar .fc-popover .fc-popover-header .fc-popover-close {
  215. color: #5e5873; }
  216. .app-calendar .fc-popover .fc-popover-body *:not(:last-of-type) {
  217. margin-bottom: 0.3rem; }
  218. .app-calendar .fc .fc-event .fc-event-main {
  219. color: inherit; }
  220. .app-calendar .fc-list-event {
  221. background: transparent !important; }
  222. @media (min-width: 992px) {
  223. .app-calendar .app-calendar-sidebar {
  224. position: static;
  225. height: auto;
  226. box-shadow: none !important; }
  227. .app-calendar .app-calendar-sidebar .flatpickr-days {
  228. background-color: transparent; } }
  229. .event-sidebar .select2-selection__choice__remove:before {
  230. top: 40% !important; }
  231. .horizontal-layout .app-calendar {
  232. margin-bottom: 1rem; }
  233. @media (max-width: 992px) {
  234. .fc .fc-sidebarToggle-button {
  235. font-size: 0; } }
  236. @media (min-width: 992px) {
  237. .fc .fc-sidebarToggle-button {
  238. display: none; } }
  239. @media (max-width: 700px) {
  240. .app-calendar .fc .fc-header-toolbar .fc-toolbar-chunk:last-of-type {
  241. margin-top: 1rem; } }