Skip to content

Instantly share code, notes, and snippets.

@ronnieduke
Last active August 29, 2015 14:07
Show Gist options
  • Save ronnieduke/ec2d95ceb8b59f9322a7 to your computer and use it in GitHub Desktop.
Save ronnieduke/ec2d95ceb8b59f9322a7 to your computer and use it in GitHub Desktop.
Starter LESS code for Mura Full Calendar
//Full Calendar
.MuraCalendar{
// The Calendar header stuff
.fc-header{
.fc-button{
// Hover class added via js
&.fc-state-hover{
background-color: @primary;
background-image: none;
color: @white;
}
// Disabled buttons
&.fc-state-disabled{
opacity: 0.35;
}
// Default buttons
&.fc-state-default{
background-image: none;
border-color: lighten(@grayMod, 30%);
box-shadow: none;
}
// Active buttons
&.fc-state-active{
// use the same styles as hover
.fc-state-hover;
}
}// end .fc-button
}// end .fc-header
// The calendar content
.fc-content{
.fc-day{
&.fc-today{
background: fade(@primary, 10%)
}
.fc-day-number{
color: @grayMod;
}
.fc-day-content{
}
}// end .fc-day
}// end .fc-content
}// end .MuraCalendar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment