Last active
August 29, 2015 14:07
-
-
Save ronnieduke/ec2d95ceb8b59f9322a7 to your computer and use it in GitHub Desktop.
Starter LESS code for Mura Full Calendar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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