fullcalendar/docs/theming.txt

25 lines
801 B
Plaintext
Raw Normal View History

2009-09-14 00:25:49 +02:00
Theming
=======
FullCalendar can be used with jQuery UI themes. Themes provide a more stylized
2009-09-14 05:36:27 +02:00
look for the calendar and can easily be created using the
`jQuery UI ThemeRoller <http://jqueryui.com/themeroller/>`_.
2009-09-14 00:25:49 +02:00
2009-09-14 05:36:27 +02:00
In order for themes to work, you must include the theme's CSS file and
*fullcalendar.css* on the current page. You must also enable the ``theme`` option.
2009-09-14 00:25:49 +02:00
Here is the full list of theme-related options:
2009-09-14 05:36:27 +02:00
**theme**: Boolean, *Default*: ``false``
Enables/disables use of jQuery UI themes
**buttonIcons**: Object
Determines which icons appear within header buttons. If a button
does not have an entry, it falls back to using ``buttonText``.
2009-09-14 00:25:49 +02:00
2009-09-14 05:36:27 +02:00
Here is the default value for ``buttonIcons``::
2009-09-14 00:25:49 +02:00
2009-09-14 05:36:27 +02:00
{
prev: 'circle-triangle-w',
next: 'circle-triangle-e'
}