You are here

fullcalendar.theme.css in FullCalendar 8.2

/* Force contents to wrap */
.fc-event {
  word-wrap: break-word;
}

/* Undo Drupal default theme link colors */
.fc-content a:link,
.fc-content a:visited {
  color: #fff;
  text-decoration: none;
}

/* 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 tr {
  background-color: transparent;
}

.fc-header-title {
  text-align: center;
}

.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 */
.js .fullcalendar-content {
  display: none;
}

/* Reposition the throbber. */
.fullcalendar .ajax-progress {
  left: 50%;
  position: absolute;
  top: 1.6em;
  z-index: 1;
}

.fc {
  margin-bottom: 2em;
}

File

assets/css/fullcalendar.theme.css
View source
  1. /* Force contents to wrap */
  2. .fc-event {
  3. word-wrap: break-word;
  4. }
  5. /* Undo Drupal default theme link colors */
  6. .fc-content a:link,
  7. .fc-content a:visited {
  8. color: #fff;
  9. text-decoration: none;
  10. }
  11. /* Styling for updated message */
  12. .fullcalendar-status {
  13. background: #ecf8f4;
  14. border: 1px solid #fff;
  15. color: #687;
  16. display: none;
  17. margin: 0 0 10px 0;
  18. padding: 15px;
  19. text-align: center;
  20. }
  21. .fullcalendar-status-close {
  22. text-transform: lowercase;
  23. }
  24. .fc table {
  25. margin: 0;
  26. }
  27. table.fc-header {
  28. margin-bottom: 10px;
  29. }
  30. .fc-header tr {
  31. background-color: transparent;
  32. }
  33. .fc-header-title {
  34. text-align: center;
  35. }
  36. .fc-header tbody,
  37. .fc-header th,
  38. .fc-header td {
  39. border: 0;
  40. }
  41. .fc-header .fc-state-default,
  42. .fc-header .ui-state-default {
  43. margin-bottom: 0;
  44. }
  45. /* Hide plain text events when javascript is enabled */
  46. .js .fullcalendar-content {
  47. display: none;
  48. }
  49. /* Reposition the throbber. */
  50. .fullcalendar .ajax-progress {
  51. left: 50%;
  52. position: absolute;
  53. top: 1.6em;
  54. z-index: 1;
  55. }
  56. .fc {
  57. margin-bottom: 2em;
  58. }