Skip to content
Snippets Groups Projects
Select Git revision
  • 8e298643d9d76205a58e114174ede0d8b3e47d81
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

full-calendar.pcss

Blame
  • full-calendar.pcss 1.22 KiB
    :root {
      --fc-button-bg-color: #000;
      --fc-button-border-color: #000;
      --fc-button-hover-bg-color: #f9ce05;
      --fc-button-hover-border-color: #f9ce05;
      --fc-button-active-bg-color: #f9ce05;
      --fc-button-active-border-color: #f9ce05;
      --fc-event-bg-color: #fea86a;
      --fc-event-border-color: #fea86a;
      --fc-border-color: #ed9654;
      --fc-today-bg-color: #ed9654;
    }
    
    .fc {
      @apply font-condensed;
    }
    
    .fc-col-header {
      width: 100%!important;
    }
    
    /* Don't underline only when there is no href attribute defined. */
    .fc .fc-col-header-cell-cushion:not([href]),
    .fc .fc-daygrid-day-number:not([href]) {
      @apply no-underline;
    }
    
    .fc .fc-col-header-cell {
      @apply bg-orange-300 p-3 font-alt text-white text-xl capitalize;
    }
    
    .fc .fc-button {
      @apply font-alt rounded-none px-5 py-2 duration-150;
    }
    
    .fc .fc-button:hover:not(:disabled),
    .fc .fc-button:active:not(:disabled){
      @apply text-black;
    }
    
    .fc .fc-event {
      @apply p-1 rounded-none border-none text-sm;
    }
    
    .fc .fc-toolbar-title,
    .fc .fc-today-button {
      @apply capitalize;
    }
    
    .fc .fc-daygrid-day-number {
      @apply font-alt text-3xl text-orange-300;
    }
    
    .fc .fc-multimonth-daygrid .fc-daygrid-day-number {
      @apply text-base;
    }
    
    .fc .fc-day-today .fc-daygrid-day-number {
      @apply text-white;
    }