2016-10-16 10:04:53 -04:00
|
|
|
/**
|
|
|
|
* @file view/theme/frio/css/mod_event.css
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The different views of js fullcalendar
|
|
|
|
*/
|
|
|
|
#fc-header {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
#fc-header-left,
|
|
|
|
#fc-header-right,
|
|
|
|
#event-calendar-title {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
#fc-title {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
|
|
}
|
|
|
|
#fc-header-right {
|
|
|
|
margin-top: -4px;
|
|
|
|
}
|
2017-05-22 08:44:51 -04:00
|
|
|
#fc-header-right .dropdown > button {
|
2017-04-02 18:51:34 -04:00
|
|
|
color: inherit;
|
|
|
|
}
|
2016-10-16 10:04:53 -04:00
|
|
|
#event-calendar-title {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2017-03-17 20:27:17 -04:00
|
|
|
#event-calendar-views {
|
2016-10-16 10:04:53 -04:00
|
|
|
padding: 6px 9px;
|
|
|
|
font-size: 14px
|
|
|
|
}
|
|
|
|
.fc .fc-toolbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.fc .fc-month-view td.fc-widget-content,
|
|
|
|
.fc .fc-list-view,
|
|
|
|
.fc .fc-list-view .fc-list-table td,
|
|
|
|
.fc .fc-body td {
|
|
|
|
border-style: none;
|
|
|
|
}
|
|
|
|
.fc td.fc-widget-header,
|
|
|
|
.fc th.fc-widget-header {
|
|
|
|
border-left: none;
|
|
|
|
border-right: none;
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
.fc .fc-month-view td.fc-day {
|
|
|
|
border-left: none;
|
|
|
|
border-right: none;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
padding: 0 6px;
|
|
|
|
}
|
|
|
|
.fc .fc-day-grid-container .fc-row {
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
border-color: #ddd;
|
|
|
|
}
|
|
|
|
.fc .fc-day-grid-event .fc-content {
|
|
|
|
/*white-space: normal;*/
|
|
|
|
}
|
|
|
|
.fc tr td.fc-today {
|
|
|
|
border-style: none;
|
|
|
|
}
|
|
|
|
.fc .fc-month-view .fc-content .fc-title .item-desc {
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
.fc .fc-view-container {
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
.fc .fc-list-view td {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#events-calendar.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
|
|
|
|
float: left;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.fc .fc-event {
|
|
|
|
background-color: transparent;
|
|
|
|
background-color: #E3F2FD;
|
|
|
|
border: 1px solid #BBDEFB;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
.fc .fc-month-view .fc-time,
|
|
|
|
.fc .fc-listMonth-view .fc-list-item-time,
|
|
|
|
.fc .fc-listMonth-view .fc-list-item-marker,
|
|
|
|
.fc .fc-listMonth-view .fc-widget-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.fc .fc-listMonth-view .fc-list-item:hover td {
|
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.fc .fc-listMonth-view .seperator {
|
|
|
|
margin-left: 30px;
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The event-card
|
|
|
|
*/
|
|
|
|
.event-card {
|
2017-10-13 13:42:27 -04:00
|
|
|
width: auto;
|
2016-10-16 10:04:53 -04:00
|
|
|
}
|
|
|
|
.event-card .event-label,
|
|
|
|
.event-card .location-label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.popover.event-card .event-card-basic-content {
|
|
|
|
margin-top: 0;
|
|
|
|
padding: 9px;
|
|
|
|
padding-left: 0px;
|
|
|
|
}
|
|
|
|
.event-card .event-hover-location .location {
|
|
|
|
color: #777;
|
|
|
|
font-size: 13px;
|
2017-10-13 13:42:27 -04:00
|
|
|
}
|