forked from qburst/qbmeetingroomplugin
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmeeting_calendar.css
145 lines (119 loc) · 2.79 KB
/
meeting_calendar.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@media screen and (-webkit-min-device-pixel-ratio:0) { #loading{padding-left: 80px;} }
#ui-datepicker-div {
z-index: 1000 !important;
}
.ui-widget-header{ background: none !important; background-color: #EA1D22 !important; color: white; border: none !important; }
.saveMeetingModal { display: none; }
.saveMeetingModal form label { float: left; width: 140px; text-align:left;}
#loading
{
background-image: url('../images/loading.gif');
background-repeat: no-repeat;
width: 16px;
height: 16px;
float: right;
margin-top: 6px;
}
#loading
{
padding-left:85px\9;
}
div.field
{
padding-bottom: 5px;
padding-left: 5px;
padding-right: 0;
padding-top: 5px;
width: 358px;
}
#save_meeting{
position: relative;
margin-left:76px;
}
.formLayout
{
padding: 10px;
overflow: hidden;
}
.formLayout label, .formLayout input, .formLayout select
{
display: block;
float: left;
margin-bottom: 10px;
}
.formLayout label
{
width: 140px;
text-align: right;
padding-right: 20px;
}
.formLayout input, .formLayout select
{
width: 200px;
}
br
{
clear: left;
}
.fc-time-grid-event .fc-time
{
background: #EA1D22;
}
.fc-time-grid-event .fc-title
{
color: #202020;
}
.fc-event .fc-bg
{
border-color: #202020;
color: #202020;
background: #E0E0E0 !important;
opacity: 1;
}
.fc-time-grid-event.myEvents .fc-time
{
background-image: url(../images/wrench.png);
background-repeat: no-repeat;
background-position: center right
}
#recurCheckbox{
margin-left: -90px;
}
/************************************************************************************************************
add the following for every category (<cid>=category id) where you want a different style:
.fc-time-grid-event.category_<cid> .fc-time
{
background-color: #<color>;
}
************************************************************************************************************/
.fc-time-grid-event.category_1 .fc-time
{
background-color: #EA1D22;
}
.fc-time-grid-event.category_2 .fc-time
{
background-color: black;
}
.fc-time-grid-event.category_3 .fc-time
{
background-color: green;
}
/************************************************************************************************************
add the following for every meeting room (<roomnr>=index of the room in the select box) where you want a different style:
.fc-time-grid-event.meeting_room_<roomnr> .fc-time
{
background-color: #<color>;
}
************************************************************************************************************/
.fc-time-grid-event.meeting_room_1 .fc-time
{
background-color: #EA1D22;
}
.fc-time-grid-event.meeting_room_2 .fc-time
{
background-color: black;
}
.fc-time-grid-event.meeting_room_3 .fc-time
{
background-color: green;
}