_fullcalendar.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. //
  2. // Plugin: Full Calendar
  3. //
  4. // Buttons
  5. .fc-button {
  6. background: $gray-100;
  7. background-image: none;
  8. border-bottom-color: #ddd;
  9. border-color: #ddd;
  10. color: $gray-700;
  11. &:hover,
  12. &:active,
  13. &.hover {
  14. background-color: #e9e9e9;
  15. }
  16. }
  17. // Calendar title
  18. .fc-header-title h2 {
  19. color: #666;
  20. font-size: 15px;
  21. line-height: 1.6em;
  22. margin-left: 10px;
  23. }
  24. .fc-header-right {
  25. padding-right: 10px;
  26. }
  27. .fc-header-left {
  28. padding-left: 10px;
  29. }
  30. // Calendar table header cells
  31. .fc-widget-header {
  32. background: #fafafa;
  33. }
  34. .fc-grid {
  35. border: 0;
  36. width: 100%;
  37. }
  38. .fc-widget-header:first-of-type,
  39. .fc-widget-content:first-of-type {
  40. border-left: 0;
  41. border-right: 0;
  42. }
  43. .fc-widget-header:last-of-type,
  44. .fc-widget-content:last-of-type {
  45. border-right: 0;
  46. }
  47. .fc-toolbar {
  48. margin: 0;
  49. padding: 1rem;
  50. }
  51. .fc-day-number {
  52. font-size: 20px;
  53. font-weight: 300;
  54. padding-right: 10px;
  55. }
  56. .fc-color-picker {
  57. list-style: none;
  58. margin: 0;
  59. padding: 0;
  60. > li {
  61. float: left;
  62. font-size: 30px;
  63. line-height: 30px;
  64. margin-right: 5px;
  65. .fa,
  66. .fas,
  67. .far,
  68. .fab,
  69. .glyphicon,
  70. .ion {
  71. transition: transform linear .3s;
  72. &:hover {
  73. @include rotate(30deg);
  74. }
  75. }
  76. }
  77. }
  78. #add-new-event {
  79. transition: all linear .3s;
  80. }
  81. .external-event {
  82. @include box-shadow($card-shadow);
  83. border-radius: $border-radius;
  84. cursor: move;
  85. font-weight: bold;
  86. margin-bottom: 4px;
  87. padding: 5px 10px;
  88. &:hover {
  89. @include box-shadow(inset 0 0 90px rgba(0, 0, 0, 0.2));
  90. }
  91. }