2009-09-17 08:30:10 +02:00
|
|
|
|
|
|
|
/* Month View, Basic Week View, Basic Day View
|
|
|
|
------------------------------------------------------------------------*/
|
|
|
|
|
2011-01-24 08:10:25 +01:00
|
|
|
.fc-grid th {
|
2009-09-17 08:30:10 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fc-grid .fc-day-number {
|
|
|
|
float: right;
|
|
|
|
padding: 0 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fc-grid .fc-other-month .fc-day-number {
|
|
|
|
opacity: 0.3;
|
2009-09-21 06:57:20 +02:00
|
|
|
filter: alpha(opacity=30); /* for IE */
|
|
|
|
/* opacity with small font can sometimes look too faded
|
|
|
|
might want to set the 'color' property instead
|
|
|
|
making day-numbers bold also fixes the problem */
|
2009-09-17 08:30:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.fc-grid .fc-day-content {
|
|
|
|
clear: both;
|
2011-01-24 08:10:25 +01:00
|
|
|
padding: 2px 2px 1px; /* distance between events and day edges */
|
2009-09-17 08:30:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* event styles */
|
|
|
|
|
|
|
|
.fc-grid .fc-event-time {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* right-to-left */
|
|
|
|
|
|
|
|
.fc-rtl .fc-grid .fc-day-number {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fc-rtl .fc-grid .fc-event-time {
|
|
|
|
float: right;
|
2009-09-21 06:57:20 +02:00
|
|
|
}
|
2011-02-01 22:09:32 +01:00
|
|
|
|
|
|
|
|