forked from pdrakeweb/Drupal-FullCalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fullcalendar.custom.css
113 lines (95 loc) · 1.82 KB
/
fullcalendar.custom.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* $Id$ */
/* Undo Drupal default theme link colors */
.fc-content a:link,
.fc-content a:visited {
color: #fff;
text-decoration: none;
}
/* Reset FullCalendar generic style */
.fc-event,
.fc-agenda .fc-event-time,
.fc-event a {
border-style: none;
background-color: transparent;
color: inherit;
}
/* Set FullCalendar default style */
.fc-event-default,
.fc-agenda .fc-event-default .fc-event-time,
.fc-event-default a {
border-color: #36c;
border-style: solid;
background-color: #36c;
color: #fff;
}
/* Styling for updated message */
#fullcalendar-status {
background: #ecf8f4;
border: 1px solid #fff;
color: #687;
display: none;
margin: 0 0 10px 0;
padding: 15px;
text-align: center;
}
.fc table {
margin: 0;
}
table.fc-header {
margin-bottom: 10px;
}
.fc-header tbody,
.fc-header th,
.fc-header td {
border: 0;
}
.fc-header .fc-state-default,
.fc-header .ui-state-default {
margin-bottom: 0;
}
/* Add flyout */
a span.fc-flyout {
display:none;
}
a:hover span.fc-flyout {
display:block;
position:absolute;
left:50%;
bottom:5px;
z-index:1000;
width:150px;
margin-left:-24px;
padding:0px 0px 10px;
overflow:hidden;
opacity:.8;
background: url(images/flyout.png) 20px 100% no-repeat;
}
a:hover span.fc-flyout span.fc-flyout-content {
display:block;
padding:10px;
background:#000;
color:#fff;
-moz-border-radius:5px;
-webkit-border-radius:5px;
text-decoration: none;
}
a:hover span.fc-flyout span.fc-flyout-content * {
text-decoration: none;
border: none;
background: none;
}
.fc-view {
overflow: visible;
}
.fc-event a {
overflow: visible;
}
.fc-event-vert span.fc-event-time{
overflow: visible;
}
/* End flyout */
/* Add throbber when working */
h2.fc-ajaxing {
padding-right: 18px !important;
background: url(images/throbber.gif) right -18px no-repeat;
}