calendar.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* ========================================================================
  2. Component: calendar
  3. ========================================================================== */
  4. .calendar-app {
  5. .fc-state-highlight,
  6. .fc-day:hover {
  7. background-color: #f7f8f9;
  8. }
  9. .fc-today {
  10. background-color: transparent !important;
  11. .fc-day-number {
  12. color: $info;
  13. }
  14. }
  15. .fc-day-number {
  16. font-size: 18px;
  17. font-weight: bold;
  18. color: #a1a2a3;
  19. }
  20. .fc-event {
  21. color: #fff !important;
  22. } // Allow to drag event outside the calendar
  23. .fc-view {
  24. overflow: visible;
  25. }
  26. @include media-breakpoint-down(lg) {
  27. // hide views buttons
  28. .fc-right {
  29. display: none;
  30. }
  31. }
  32. @include media-breakpoint-down(md) {
  33. // hide views buttons and date buttons
  34. .fc-right, .fc-left {
  35. display: none;
  36. }
  37. }
  38. }
  39. // Calendar app styles
  40. // -----------------------
  41. .external-events {
  42. margin: 0;
  43. >div {
  44. // display: inline-block;
  45. margin-right: 5px;
  46. margin-bottom: 5px;
  47. padding: 6px 10px;
  48. color: #fff;
  49. font-size: 11px;
  50. border-radius: 2px;
  51. cursor: move;
  52. }
  53. &:empty {
  54. content: "EMPTY";
  55. }
  56. } // Remove events drop area
  57. #external-event-color-selector {
  58. .circle.selected {
  59. border: 3px solid rgba(255, 255, 255, .5);
  60. }
  61. }