Skip to content

Instantly share code, notes, and snippets.

Created March 31, 2015 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/40d1c2a96e24e2d2956c to your computer and use it in GitHub Desktop.
Save anonymous/40d1c2a96e24e2d2956c to your computer and use it in GitHub Desktop.
/** Change the background colour of the grid header area */
.tribe_mini_calendar_widget thead,
.tribe_mini_calendar_widget .tribe-mini-calendar-nav td {
background: lightblue;
}
/** Change the colour scheme of the days of the week */
.tribe_mini_calendar_widget .tribe-mini-calendar-dayofweek {
background: yellow;
color: black;
}
/** Make highlighted days (those that have events) pop out a little more */
.tribe-mini-calendar td.tribe-events-has-events {
background: #FAa060;
}
/** Remove the "dot icon" for populated days */
.tribe-mini-calendar .tribe-events-has-events div[id*="daynum-"] a::before {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment