You are here

fullcalendar.custom.css in FullCalendar 6

Same filename and directory in other branches
  1. 7 fullcalendar.custom.css
/* Undo Drupal default theme link colors */
.fc-content a:link,
.fc-content a:visited {
  color: #fff;
  text-decoration: none;
}

/* Reset FullCalendar generic style */
.fc-event,
.fc-agenda .fc-event-time,
.fc-event a {
  border-style: none;
  background-color: transparent;
  color: inherit;
}

/* Set FullCalendar default style */
.fc-event-default,
.fc-agenda .fc-event-default .fc-event-time,
.fc-event-default a {
  border-color: #36c;
  border-style: solid;
  background-color: #36c;
  color: #fff;
}

/* Styling for updated message */
#fullcalendar-status {
  background: #ecf8f4;
  border: 1px solid #fff;
  color: #687;
  display: none;
  margin: 0 0 10px 0;
  padding: 15px;
  text-align: center;
}

File

fullcalendar.custom.css
View source
  1. /* Undo Drupal default theme link colors */
  2. .fc-content a:link,
  3. .fc-content a:visited {
  4. color: #fff;
  5. text-decoration: none;
  6. }
  7. /* Reset FullCalendar generic style */
  8. .fc-event,
  9. .fc-agenda .fc-event-time,
  10. .fc-event a {
  11. border-style: none;
  12. background-color: transparent;
  13. color: inherit;
  14. }
  15. /* Set FullCalendar default style */
  16. .fc-event-default,
  17. .fc-agenda .fc-event-default .fc-event-time,
  18. .fc-event-default a {
  19. border-color: #36c;
  20. border-style: solid;
  21. background-color: #36c;
  22. color: #fff;
  23. }
  24. /* Styling for updated message */
  25. #fullcalendar-status {
  26. background: #ecf8f4;
  27. border: 1px solid #fff;
  28. color: #687;
  29. display: none;
  30. margin: 0 0 10px 0;
  31. padding: 15px;
  32. text-align: center;
  33. }