source: trunk/prototype/plugins/fullcalendar/fullcalendar.print.css @ 5529

Revision 5529, 1.3 KB checked in by acoutinho, 12 years ago (diff)

Ticket #2434 - Correcoes de bugs e atualizicao do fullcalendar

Line 
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 
16 
17 /* Events
18-----------------------------------------------------*/
19 
20.fc-event-skin {
21        background: none !important;
22        color: #000 !important;
23        }
24       
25/* horizontal events */
26       
27.fc-event-hori {
28        border-width: 0 0 1px 0 !important;
29        border-bottom-style: dotted !important;
30        border-bottom-color: #000 !important;
31        padding: 1px 0 0 0 !important;
32        }
33       
34.fc-event-hori .fc-event-inner {
35        border-width: 0 !important;
36        padding: 0 1px !important;
37        }
38       
39/* vertical events */
40       
41.fc-event-vert {
42        border-width: 0 0 0 1px !important;
43        border-left-style: dotted !important;
44        border-left-color: #000 !important;
45        padding: 0 1px 0 0 !important;
46        }
47       
48.fc-event-vert .fc-event-inner {
49        border-width: 0 !important;
50        padding: 1px 0 !important;
51        }
52       
53.fc-event-bg {
54        display: none !important;
55        }
56       
57.fc-event .ui-resizable-handle {
58        display: none !important;
59        }
60       
61       
Note: See TracBrowser for help on using the repository browser.