Commit before setting up a new deployment environment
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
/*!
|
||||
FullCalendar v5.6.0
|
||||
Docs & License: https://fullcalendar.io/
|
||||
(c) 2020 Adam Shaw
|
||||
*/
|
||||
|
||||
// Creative Tim Changes
|
||||
|
||||
.fc-theme-standard .fc-scrollgrid,
|
||||
.fc-scrollgrid {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.fc-theme-standard td,
|
||||
.fc-theme-standard th {
|
||||
border-color: $gray-200;
|
||||
}
|
||||
|
||||
.fc-theme-standard thead tr th{
|
||||
border-right: none;
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
.fc-theme-standard td{
|
||||
&:last-child{
|
||||
border-right: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fc-theme-standard tr{
|
||||
&:last-child td{
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fc-h-event{
|
||||
border: none;
|
||||
}
|
||||
|
||||
.fc-daygrid-block-event .fc-event-time,
|
||||
.fc-daygrid-block-event .fc-event-title{
|
||||
font-weight: $font-weight-normal;
|
||||
font-size: $font-size-xs;
|
||||
line-height: $line-height-sm;
|
||||
padding: $fc-event-title-padding-y $fc-event-title-padding-x;
|
||||
}
|
||||
|
||||
.fc .fc-daygrid-body-natural .fc-daygrid-day-events{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.fc .fc-col-header-cell-cushion{
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-bold;
|
||||
color: $gray-500;
|
||||
}
|
||||
|
||||
.fc .fc-daygrid-day-number{
|
||||
color: $gray-700;
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-light;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fc .fc-toolbar-title{
|
||||
font-size: $font-size-lg;
|
||||
}
|
||||
|
||||
.fc .fc-button{
|
||||
font-size: $font-size-sm;
|
||||
padding-top: $spacer * 0.25;
|
||||
box-shadow: $btn-box-shadow;
|
||||
transition: $btn-transition;
|
||||
.fc-icon{
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
}
|
||||
|
||||
.fc .fc-button-primary{
|
||||
background-color: $primary;
|
||||
border-color: $primary;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:not(:disabled):active,
|
||||
&:not(:disabled):active:focus{
|
||||
transform: $btn-hover-transform;
|
||||
box-shadow: $btn-hover-box-shadow;
|
||||
background-color: $primary;
|
||||
border-color: $primary;
|
||||
}
|
||||
}
|
||||
|
||||
.fc-event.fc-daygrid-event{
|
||||
border-radius: $fc-daygrid-event-border-radius;
|
||||
}
|
||||
Reference in New Issue
Block a user