You are here

fullcalendar.theme.css in FullCalendar 6.2

Same filename and directory in other branches
  1. 7.2 css/fullcalendar.theme.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-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;
}
.fullcalendar-status-close {
  text-transform: lowercase;
}

.fc table {
  margin: 0;
}

table.fc-header {
  margin-bottom: 10px;
}

.fc-header tbody,
.fc-header th,
.fc-header td {
  border: 0;
}

.fc-header .fc-state-default,
.fc-header .ui-state-default {
  margin-bottom: 0;
}

/* Hide plain text events when javascript is enabled */
html.js .fullcalendar-content {
  display: none;
}

File

css/fullcalendar.theme.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-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. }
  34. .fullcalendar-status-close {
  35. text-transform: lowercase;
  36. }
  37. .fc table {
  38. margin: 0;
  39. }
  40. table.fc-header {
  41. margin-bottom: 10px;
  42. }
  43. .fc-header tbody,
  44. .fc-header th,
  45. .fc-header td {
  46. border: 0;
  47. }
  48. .fc-header .fc-state-default,
  49. .fc-header .ui-state-default {
  50. margin-bottom: 0;
  51. }
  52. /* Hide plain text events when javascript is enabled */
  53. html.js .fullcalendar-content {
  54. display: none;
  55. }