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
- /* 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;
- }