/* module-key = 'com.atlassian.confluence.extra.team-calendars:calendar-print-resources', location = 'com/atlassian/confluence/extra/calendar3/css/printing.css' */
.plugin-calendar-container {
	font-size: 1.05em !important;
	height: 100% !important;
	width: 100% !important;
}

.fc-grid .fc-day-number {
	padding-top: 1px !important;
}

.calendar-toolbar span.date-display {
	font-size: 24px !important;
}

#title-text span.title-view-change {
	color: #000000 !important;
	display: block !important;
}

div.plugin-calendar .calendar-layout {
	float: none !important;
	margin: 0 0 0 5px !important;
	width: 1200px;
}

div.plugin-calendar .calendar-panel {
	margin: 0 !important;
	padding-bottom: 10px !important;
}

div.plugin-calendar .sub-calendar-panel {
	float: none !important;
	padding: 0 0 10px 5px !important;
	width: 100% !important;
}

div.plugin-calendar .sub-calendar-panel .sub-calendar-names {
	margin-top: 0 !important;
}

div.plugin-calendar .sub-calendar-panel .sub-calendar-names .subcalendar-item {
	display: inline-block !important;
	max-width: 25% !important;
	min-width: 20% !important;
	padding: 3px 0 10px !important;
	position: relative !important;
	vertical-align: top !important;
}

div.plugin-calendar .sub-calendar-panel .child-subcalendar-color {
	height: 17px !important;
	width: 2px !important;
}

div.plugin-calendar .sub-calendar-panel .subcalendar-disabled .subcalendar-name {
	opacity: 1 !important;
}

div.plugin-calendar .sub-calendar-panel .subcalendar-dropdown-menu .aui-dd-trigger,
.calendar-toolbar .aui-buttons,
#add-event-link,
.calendar-error,
.calendar-warning,
.plugin-calendar .events-truncated-message-container{
	display: none !important;
}

div.plugin-calendar .sub-calendar-panel .subcalendar-item .child-subcalendars,
.fc-event-inner span.fc-event-title,
.fc-event-inner .fc-event-title,
.fc-event-inner .fc-event-time,
div.timeline-event-content {
	color: #000000 !important;
}

.child-subcalendar.subcalendar-disabled,
.subcalendar-item.allchildsubcalendar-disabled {
	display: none !important;
}

.group-list li.event-group .group-details-container .group-headline {
	background: none !important;
	margin-top: 10px !important;
}

.fc-view-timeline .timeline-navigation,
.dashboard-calendar a.more-events,
.plugin-calendar .jira-calendars-oauth-warnings {
	display: none !important;
}

.fc-view-month .fc-event-container .fc-event,
div.plugin-calendar .fc .fc-view-agendaWeek .fc-event,
div.plugin-calendar .fc .fc-view-agendaWeek .fc-agenda-body .fc-event {
	background-image: none !important;
	border-width: 1px !important;
	margin-top: 5px !important;
    overflow: hidden !important;
}

.fc-event .ui-resizable-handle {
    display: none !important;
}

.fc-event-inner {
	display: inline !important;
}

.timeline-event-content-container {
	background-image: none !important;
}

.timeline-event-content-container .event-content-with-icon {
	background: none !important;
	display: inline !important;
	padding-left: 0 !important;
	position: relative !important;
	top: 2px !important;
}

.iconEventPrint {
	display: inline-block !important;
	margin-left: -15px !important;
    vertical-align: middle !important;
}

.timeline-event-content div.event-content {
	display: inline !important;
	position: relative !important;
	top: 2px !important;
}


.child-subcalendar .child-subcalendar-name {
	background: none !important;
	padding-left: 0 !important;
}

.plugin-calendar-container .aui-toolbar {
	display: none !important;
}

.fc-event .subcalendar-icon-container svg {
	fill: #42526E !important;
	position: absolute;
}
/* module-key = 'com.vertuna.confluence.plugins.confiforms:confiformResources-calendar', location = '/com/vertuna/confluence/plugins/confiforms/js/fullcalendar.print.css' */
/*!
 * FullCalendar v2.5.0 Print Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2015 Adam Shaw
 */

/*
 * Include this stylesheet on your page to get a more printer-friendly calendar.
 * When including this stylesheet, use the media='print' attribute of the <link> tag.
 * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.
 */

.fc {
	max-width: 100% !important;
}


/* Global Event Restyling
--------------------------------------------------------------------------------------------------*/

.fc-event {
	background: #fff !important;
	color: #000 !important;
	page-break-inside: avoid;
}

.fc-event .fc-resizer {
	display: none;
}


/* Table & Day-Row Restyling
--------------------------------------------------------------------------------------------------*/

th,
td,
hr,
thead,
tbody,
.fc-row {
	border-color: #ccc !important;
	background: #fff !important;
}

/* kill the overlaid, absolutely-positioned common components */
.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
	display: none;
}

/* don't force a min-height on rows (for DayGrid) */
.fc tbody .fc-row {
	height: auto !important; /* undo height that JS set in distributeHeight */
	min-height: 0 !important; /* undo the min-height from each view's specific stylesheet */
}

.fc tbody .fc-row .fc-content-skeleton {
	position: static; /* undo .fc-rigid */
	padding-bottom: 0 !important; /* use a more border-friendly method for this... */
}

.fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td { /* only works in newer browsers */
	padding-bottom: 1em; /* ...gives space within the skeleton. also ensures min height in a way */
}

.fc tbody .fc-row .fc-content-skeleton table {
	/* provides a min-height for the row, but only effective for IE, which exaggerates this value,
	   making it look more like 3em. for other browers, it will already be this tall */
	height: 1em;
}


/* Undo month-view event limiting. Display all events and hide the "more" links
--------------------------------------------------------------------------------------------------*/

.fc-more-cell,
.fc-more {
	display: none !important;
}

.fc tr.fc-limited {
	display: table-row !important;
}

.fc td.fc-limited {
	display: table-cell !important;
}

.fc-popover {
	display: none; /* never display the "more.." popover in print mode */
}


/* TimeGrid Restyling
--------------------------------------------------------------------------------------------------*/

/* undo the min-height 100% trick used to fill the container's height */
.fc-time-grid {
	min-height: 0 !important;
}

/* don't display the side axis at all ("all-day" and time cells) */
.fc-agenda-view .fc-axis {
	display: none;
}

/* don't display the horizontal lines */
.fc-slats,
.fc-time-grid hr { /* this hr is used when height is underused and needs to be filled */
	display: none !important; /* important overrides inline declaration */
}

/* let the container that holds the events be naturally positioned and create real height */
.fc-time-grid .fc-content-skeleton {
	position: static;
}

/* in case there are no events, we still want some height */
.fc-time-grid .fc-content-skeleton table {
	height: 4em;
}

/* kill the horizontal spacing made by the event container. event margins will be done below */
.fc-time-grid .fc-event-container {
	margin: 0 !important;
}


/* TimeGrid *Event* Restyling
--------------------------------------------------------------------------------------------------*/

/* naturally position events, vertically stacking them */
.fc-time-grid .fc-event {
	position: static !important;
	margin: 3px 2px !important;
}

/* for events that continue to a future day, give the bottom border back */
.fc-time-grid .fc-event.fc-not-end {
	border-bottom-width: 1px !important;
}

/* indicate the event continues via "..." text */
.fc-time-grid .fc-event.fc-not-end:after {
	content: "...";
}

/* for events that are continuations from previous days, give the top border back */
.fc-time-grid .fc-event.fc-not-start {
	border-top-width: 1px !important;
}

/* indicate the event is a continuation via "..." text */
.fc-time-grid .fc-event.fc-not-start:before {
	content: "...";
}

/* time */

/* undo a previous declaration and let the time text span to a second line */
.fc-time-grid .fc-event .fc-time {
	white-space: normal !important;
}

/* hide the the time that is normally displayed... */
.fc-time-grid .fc-event .fc-time span {
	display: none;
}

/* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
.fc-time-grid .fc-event .fc-time:after {
	content: attr(data-full);
}


/* Vertical Scroller & Containers
--------------------------------------------------------------------------------------------------*/

/* kill the scrollbars and allow natural height */
.fc-scroller,
.fc-day-grid-container,    /* these divs might be assigned height, which we need to cleared */
.fc-time-grid-container {  /* */
	overflow: visible !important;
	height: auto !important;
}

/* kill the horizontal border/padding used to compensate for scrollbars */
.fc-row {
	border: 0 !important;
	margin: 0 !important;
}


/* Button Controls
--------------------------------------------------------------------------------------------------*/

.fc-button-group,
.fc button {
	display: none; /* don't display any button-related controls */
}
