fullcalendar.print.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * FullCalendar v1.5.3 Print Stylesheet
  3. *
  4. * Include this stylesheet on your page to get a more printer-friendly calendar.
  5. * When including this stylesheet, use the media='print' attribute of the <link> tag.
  6. * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.
  7. *
  8. * Copyright (c) 2011 Adam Shaw
  9. * Dual licensed under the MIT and GPL licenses, located in
  10. * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
  11. *
  12. * Date: Mon Feb 6 22:40:40 2012 -0800
  13. *
  14. */
  15. /* Events
  16. -----------------------------------------------------*/
  17. .fc-event-skin {
  18. background: none !important;
  19. color: #000 !important;
  20. }
  21. /* horizontal events */
  22. .fc-event-hori {
  23. border-width: 0 0 1px 0 !important;
  24. border-bottom-style: dotted !important;
  25. border-bottom-color: #000 !important;
  26. padding: 1px 0 0 0 !important;
  27. }
  28. .fc-event-hori .fc-event-inner {
  29. border-width: 0 !important;
  30. padding: 0 1px !important;
  31. }
  32. /* vertical events */
  33. .fc-event-vert {
  34. border-width: 0 0 0 1px !important;
  35. border-left-style: dotted !important;
  36. border-left-color: #000 !important;
  37. padding: 0 1px 0 0 !important;
  38. }
  39. .fc-event-vert .fc-event-inner {
  40. border-width: 0 !important;
  41. padding: 1px 0 !important;
  42. }
  43. .fc-event-bg {
  44. display: none !important;
  45. }
  46. .fc-event .ui-resizable-handle {
  47. display: none !important;
  48. }