﻿.cl_calendar {
  /* List View
--------------------------------------------------------------------------------------------------*/
  /* possibly reusable */
  /* view wrapper */
  /* table resets */
  /* day headings with the list */
  /* event list items */
  /* make the dot closer to the event title */
  /* message when no events */ }
  .cl_calendar .fc-event-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px; }
  .cl_calendar .fc-rtl .fc-list-view {
    direction: rtl;
    /* unlike core views, leverage browser RTL */ }
  .cl_calendar .fc-list-view {
    border-width: 1px;
    border-style: solid; }
  .cl_calendar .fc .fc-list-table {
    table-layout: auto;
    /* for shrinkwrapping cell content */ }
  .cl_calendar .fc-list-table td {
    border-width: 1px 0 0;
    padding: 8px 14px; }
  .cl_calendar .fc-list-table tr:first-child td {
    border-top-width: 0; }
  .cl_calendar .fc-list-heading {
    border-bottom-width: 1px; }
  .cl_calendar .fc-list-heading td {
    font-weight: bold; }
  .cl_calendar .fc-ltr .fc-list-heading-main {
    float: left; }
  .cl_calendar .fc-ltr .fc-list-heading-alt {
    float: right; }
  .cl_calendar .fc-rtl .fc-list-heading-main {
    float: right; }
  .cl_calendar .fc-rtl .fc-list-heading-alt {
    float: left; }
  .cl_calendar .fc-list-item.fc-has-url {
    cursor: pointer;
    /* whole row will be clickable */ }
  .cl_calendar .fc-list-item-marker,
  .cl_calendar .fc-list-item-time {
    white-space: nowrap;
    width: 1px; }
  .cl_calendar .fc-ltr .fc-list-item-marker {
    padding-right: 0; }
  .cl_calendar .fc-rtl .fc-list-item-marker {
    padding-left: 0; }
  .cl_calendar .fc-list-item-title a {
    /* every event title cell has an <a> tag */
    text-decoration: none;
    color: inherit; }
  .cl_calendar .fc-list-item-title a[href]:hover {
    /* hover effect only on titles with hrefs */
    text-decoration: underline; }
  .cl_calendar .fc-list-empty-wrap2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .cl_calendar .fc-list-empty-wrap1 {
    width: 100%;
    height: 100%;
    display: table; }
  .cl_calendar .fc-list-empty {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
  .cl_calendar .fc-unthemed .fc-list-empty {
    /* theme will provide own background */
    background-color: #eee; }
