Blame view

sources/3rdparty/fullcalendar/css/fullcalendar.css 10.7 KB
31b7f2792   Kload   Upgrade to ownclo...
1
2
3
4
  /*!
   * FullCalendar v1.6.1 Stylesheet
   * Docs & License: http://arshaw.com/fullcalendar/
   * (c) 2013 Adam Shaw
03e52840d   Kload   Init
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
   */
  
  
  .fc {
  	direction: ltr;
  	text-align: left;
  	}
  	
  .fc table {
  	border-collapse: collapse;
  	border-spacing: 0;
  	}
  	
  html .fc,
  .fc table {
  	font-size: 1em;
  	}
  	
  .fc td,
  .fc th {
  	padding: 0;
  	vertical-align: top;
  	}
  
  
  
  /* Header
  ------------------------------------------------------------------------*/
  
  .fc-header td {
  	white-space: nowrap;
  	}
  
  .fc-header-left {
  	width: 25%;
  	text-align: left;
  	}
  	
  .fc-header-center {
  	text-align: center;
  	}
  	
  .fc-header-right {
  	width: 25%;
  	text-align: right;
  	}
  	
  .fc-header-title {
  	display: inline-block;
  	vertical-align: top;
  	}
  	
  .fc-header-title h2 {
  	margin-top: 0;
  	white-space: nowrap;
  	}
  	
  .fc .fc-header-space {
  	padding-left: 10px;
  	}
  	
  .fc-header .fc-button {
  	margin-bottom: 1em;
  	vertical-align: top;
  	}
  	
  /* buttons edges butting together */
  
  .fc-header .fc-button {
  	margin-right: -1px;
  	}
  	
31b7f2792   Kload   Upgrade to ownclo...
77
78
  .fc-header .fc-corner-right,  /* non-theme */
  .fc-header .ui-corner-right { /* theme */
03e52840d   Kload   Init
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
  	margin-right: 0; /* back to normal */
  	}
  	
  /* button layering (for border precedence) */
  	
  .fc-header .fc-state-hover,
  .fc-header .ui-state-hover {
  	z-index: 2;
  	}
  	
  .fc-header .fc-state-down {
  	z-index: 3;
  	}
  
  .fc-header .fc-state-active,
  .fc-header .ui-state-active {
  	z-index: 4;
  	}
  	
  	
  	
  /* Content
  ------------------------------------------------------------------------*/
  	
  .fc-content {
  	clear: both;
  	}
  	
  .fc-view {
  	width: 100%; /* needed for view switching (when view is absolute) */
  	overflow: hidden;
  	}
  	
  	
  
  /* Cell Styles
  ------------------------------------------------------------------------*/
  
  .fc-widget-header,    /* <th>, usually */
  .fc-widget-content {  /* <td>, usually */
31b7f2792   Kload   Upgrade to ownclo...
119
  	border: 1px solid #ddd;
03e52840d   Kload   Init
120
121
122
  	}
  	
  .fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
31b7f2792   Kload   Upgrade to ownclo...
123
  	background: #ffa;
03e52840d   Kload   Init
124
125
126
  	}
  	
  .fc-cell-overlay { /* semi-transparent rectangle while dragging */
31b7f2792   Kload   Upgrade to ownclo...
127
128
129
  	background: #bce8f1;
  	opacity: .3;
  	filter: alpha(opacity=30); /* for IE */
03e52840d   Kload   Init
130
131
132
133
134
135
136
137
138
139
  	}
  	
  
  
  /* Buttons
  ------------------------------------------------------------------------*/
  
  .fc-button {
  	position: relative;
  	display: inline-block;
31b7f2792   Kload   Upgrade to ownclo...
140
141
142
143
144
  	padding: 0 .6em;
  	overflow: hidden;
  	height: 1.9em;
  	line-height: 1.9em;
  	white-space: nowrap;
03e52840d   Kload   Init
145
146
147
148
  	cursor: pointer;
  	}
  	
  .fc-state-default { /* non-theme */
31b7f2792   Kload   Upgrade to ownclo...
149
  	border: 1px solid;
03e52840d   Kload   Init
150
  	}
31b7f2792   Kload   Upgrade to ownclo...
151
152
153
154
  
  .fc-state-default.fc-corner-left { /* non-theme */
  	border-top-left-radius: 4px;
  	border-bottom-left-radius: 4px;
03e52840d   Kload   Init
155
  	}
31b7f2792   Kload   Upgrade to ownclo...
156
157
158
159
  
  .fc-state-default.fc-corner-right { /* non-theme */
  	border-top-right-radius: 4px;
  	border-bottom-right-radius: 4px;
03e52840d   Kload   Init
160
  	}
31b7f2792   Kload   Upgrade to ownclo...
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
  
  /*
  	Our default prev/next buttons use HTML entities like &lsaquo; &rsaquo; &laquo; &raquo;
  	and we'll try to make them look good cross-browser.
  */
  
  .fc-text-arrow {
  	margin: 0 .1em;
  	font-size: 2em;
  	font-family: "Courier New", Courier, monospace;
  	vertical-align: baseline; /* for IE7 */
  	}
  
  .fc-button-prev .fc-text-arrow,
  .fc-button-next .fc-text-arrow { /* for &lsaquo; &rsaquo; */
  	font-weight: bold;
03e52840d   Kload   Init
177
178
179
180
  	}
  	
  /* icon (for jquery ui) */
  	
31b7f2792   Kload   Upgrade to ownclo...
181
  .fc-button .fc-icon-wrap {
03e52840d   Kload   Init
182
183
184
185
186
  	position: relative;
  	float: left;
  	top: 50%;
  	}
  	
31b7f2792   Kload   Upgrade to ownclo...
187
  .fc-button .ui-icon {
03e52840d   Kload   Init
188
189
190
191
192
193
194
  	position: relative;
  	float: left;
  	margin-top: -50%;
  	*margin-top: 0;
  	*top: -50%;
  	}
  	
31b7f2792   Kload   Upgrade to ownclo...
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
  /*
    button states
    borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
  */
  
  .fc-state-default {
  	background-color: #f5f5f5;
  	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  	background-repeat: repeat-x;
  	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  	color: #333;
  	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
03e52840d   Kload   Init
213
  	}
31b7f2792   Kload   Upgrade to ownclo...
214

03e52840d   Kload   Init
215
  .fc-state-hover,
03e52840d   Kload   Init
216
  .fc-state-down,
03e52840d   Kload   Init
217
  .fc-state-active,
31b7f2792   Kload   Upgrade to ownclo...
218
219
220
  .fc-state-disabled {
  	color: #333333;
  	background-color: #e6e6e6;
03e52840d   Kload   Init
221
  	}
31b7f2792   Kload   Upgrade to ownclo...
222
223
224
225
226
227
228
229
230
  
  .fc-state-hover {
  	color: #333333;
  	text-decoration: none;
  	background-position: 0 -15px;
  	-webkit-transition: background-position 0.1s linear;
  	   -moz-transition: background-position 0.1s linear;
  	     -o-transition: background-position 0.1s linear;
  	        transition: background-position 0.1s linear;
03e52840d   Kload   Init
231
  	}
31b7f2792   Kload   Upgrade to ownclo...
232
233
234
235
236
237
238
239
  
  .fc-state-down,
  .fc-state-active {
  	background-color: #cccccc;
  	background-image: none;
  	outline: 0;
  	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  	}
03e52840d   Kload   Init
240
241
  .fc-state-disabled {
  	cursor: default;
31b7f2792   Kload   Upgrade to ownclo...
242
243
244
245
  	background-image: none;
  	opacity: 0.65;
  	filter: alpha(opacity=65);
  	box-shadow: none;
03e52840d   Kload   Init
246
  	}
31b7f2792   Kload   Upgrade to ownclo...
247

03e52840d   Kload   Init
248
249
250
251
252
253
  	
  
  /* Global Event Styles
  ------------------------------------------------------------------------*/
  	 
  .fc-event {
31b7f2792   Kload   Upgrade to ownclo...
254
255
256
  	border: 1px solid #3a87ad; /* default BORDER color */
  	background-color: #3a87ad; /* default BACKGROUND color */
  	color: #fff;               /* default TEXT color */
03e52840d   Kload   Init
257
258
259
  	font-size: .85em;
  	cursor: default;
  	}
31b7f2792   Kload   Upgrade to ownclo...
260
261
262
263
  
  a.fc-event {
  	text-decoration: none;
  	}
03e52840d   Kload   Init
264
265
266
267
268
269
  	
  a.fc-event,
  .fc-event-draggable {
  	cursor: pointer;
  	}
  	
03e52840d   Kload   Init
270
271
272
  .fc-rtl .fc-event {
  	text-align: right;
  	}
31b7f2792   Kload   Upgrade to ownclo...
273

03e52840d   Kload   Init
274
  .fc-event-inner {
03e52840d   Kload   Init
275
276
  	width: 100%;
  	height: 100%;
03e52840d   Kload   Init
277
278
279
280
281
282
283
284
  	overflow: hidden;
  	}
  	
  .fc-event-time,
  .fc-event-title {
  	padding: 0 1px;
  	}
  	
31b7f2792   Kload   Upgrade to ownclo...
285
  .fc .ui-resizable-handle {
03e52840d   Kload   Init
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
  	display: block;
  	position: absolute;
  	z-index: 99999;
  	overflow: hidden; /* hacky spaces (IE6/7) */
  	font-size: 300%;  /* */
  	line-height: 50%; /* */
  	}
  	
  	
  	
  /* Horizontal Events
  ------------------------------------------------------------------------*/
  
  .fc-event-hori {
  	border-width: 1px 0;
  	margin-bottom: 1px;
  	}
31b7f2792   Kload   Upgrade to ownclo...
303
304
305
306
307
308
309
310
311
312
313
314
315
316
  
  .fc-ltr .fc-event-hori.fc-event-start,
  .fc-rtl .fc-event-hori.fc-event-end {
  	border-left-width: 1px;
  	border-top-left-radius: 3px;
  	border-bottom-left-radius: 3px;
  	}
  
  .fc-ltr .fc-event-hori.fc-event-end,
  .fc-rtl .fc-event-hori.fc-event-start {
  	border-right-width: 1px;
  	border-top-right-radius: 3px;
  	border-bottom-right-radius: 3px;
  	}
03e52840d   Kload   Init
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
  	
  /* resizable */
  	
  .fc-event-hori .ui-resizable-e {
  	top: 0           !important; /* importants override pre jquery ui 1.7 styles */
  	right: -3px      !important;
  	width: 7px       !important;
  	height: 100%     !important;
  	cursor: e-resize;
  	}
  	
  .fc-event-hori .ui-resizable-w {
  	top: 0           !important;
  	left: -3px       !important;
  	width: 7px       !important;
  	height: 100%     !important;
  	cursor: w-resize;
  	}
  	
  .fc-event-hori .ui-resizable-handle {
  	_padding-bottom: 14px; /* IE6 had 0 height */
  	}
  	
  	
  	
03e52840d   Kload   Init
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
  /* Reusable Separate-border Table
  ------------------------------------------------------------*/
  
  table.fc-border-separate {
  	border-collapse: separate;
  	}
  	
  .fc-border-separate th,
  .fc-border-separate td {
  	border-width: 1px 0 0 1px;
  	}
  	
  .fc-border-separate th.fc-last,
  .fc-border-separate td.fc-last {
  	border-right-width: 1px;
  	}
  	
  .fc-border-separate tr.fc-last th,
  .fc-border-separate tr.fc-last td {
  	border-bottom-width: 1px;
  	}
  	
  .fc-border-separate tbody tr.fc-first td,
  .fc-border-separate tbody tr.fc-first th {
  	border-top-width: 0;
  	}
  	
  	
  
  /* Month View, Basic Week View, Basic Day View
  ------------------------------------------------------------------------*/
  
  .fc-grid th {
  	text-align: center;
  	}
31b7f2792   Kload   Upgrade to ownclo...
377
378
379
380
381
382
383
384
385
  
  .fc .fc-week-number {
  	width: 22px;
  	text-align: center;
  	}
  
  .fc .fc-week-number div {
  	padding: 0 2px;
  	}
03e52840d   Kload   Init
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
  	
  .fc-grid .fc-day-number {
  	float: right;
  	padding: 0 2px;
  	}
  	
  .fc-grid .fc-other-month .fc-day-number {
  	opacity: 0.3;
  	filter: alpha(opacity=30); /* for IE */
  	/* opacity with small font can sometimes look too faded
  	   might want to set the 'color' property instead
  	   making day-numbers bold also fixes the problem */
  	}
  	
  .fc-grid .fc-day-content {
  	clear: both;
  	padding: 2px 2px 1px; /* distance between events and day edges */
  	}
  	
  /* event styles */
  	
  .fc-grid .fc-event-time {
  	font-weight: bold;
  	}
  	
  /* right-to-left */
  	
  .fc-rtl .fc-grid .fc-day-number {
  	float: left;
  	}
  	
  .fc-rtl .fc-grid .fc-event-time {
  	float: right;
  	}
  	
  	
  
  /* Agenda Week View, Agenda Day View
  ------------------------------------------------------------------------*/
  
  .fc-agenda table {
  	border-collapse: separate;
  	}
  	
  .fc-agenda-days th {
  	text-align: center;
  	}
  	
  .fc-agenda .fc-agenda-axis {
  	width: 50px;
  	padding: 0 4px;
  	vertical-align: middle;
  	text-align: right;
  	white-space: nowrap;
  	font-weight: normal;
  	}
31b7f2792   Kload   Upgrade to ownclo...
442
443
444
445
  
  .fc-agenda .fc-week-number {
  	font-weight: bold;
  	}
03e52840d   Kload   Init
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
  	
  .fc-agenda .fc-day-content {
  	padding: 2px 2px 1px;
  	}
  	
  /* make axis border take precedence */
  	
  .fc-agenda-days .fc-agenda-axis {
  	border-right-width: 1px;
  	}
  	
  .fc-agenda-days .fc-col0 {
  	border-left-width: 0;
  	}
  	
  /* all-day area */
  	
  .fc-agenda-allday th {
  	border-width: 0 1px;
  	}
  	
  .fc-agenda-allday .fc-day-content {
  	min-height: 34px; /* TODO: doesnt work well in quirksmode */
  	_height: 34px;
  	}
  	
  /* divider (between all-day and slots) */
  	
  .fc-agenda-divider-inner {
  	height: 2px;
  	overflow: hidden;
  	}
  	
  .fc-widget-header .fc-agenda-divider-inner {
  	background: #eee;
  	}
  	
  /* slot rows */
  	
  .fc-agenda-slots th {
  	border-width: 1px 1px 0;
  	}
  	
  .fc-agenda-slots td {
  	border-width: 1px 0 0;
  	background: none;
  	}
  	
  .fc-agenda-slots td div {
  	height: 20px;
  	}
  	
  .fc-agenda-slots tr.fc-slot0 th,
  .fc-agenda-slots tr.fc-slot0 td {
  	border-top-width: 0;
  	}
  
  .fc-agenda-slots tr.fc-minor th,
  .fc-agenda-slots tr.fc-minor td {
  	border-top-style: dotted;
  	}
  	
  .fc-agenda-slots tr.fc-minor th.ui-widget-header {
  	*border-top-style: solid; /* doesn't work with background in IE6/7 */
  	}
  	
  
  
  /* Vertical Events
  ------------------------------------------------------------------------*/
  
  .fc-event-vert {
  	border-width: 0 1px;
  	}
31b7f2792   Kload   Upgrade to ownclo...
520
521
522
523
524
525
526
527
528
529
530
  
  .fc-event-vert.fc-event-start {
  	border-top-width: 1px;
  	border-top-left-radius: 3px;
  	border-top-right-radius: 3px;
  	}
  
  .fc-event-vert.fc-event-end {
  	border-bottom-width: 1px;
  	border-bottom-left-radius: 3px;
  	border-bottom-right-radius: 3px;
03e52840d   Kload   Init
531
532
533
534
535
536
  	}
  	
  .fc-event-vert .fc-event-time {
  	white-space: nowrap;
  	font-size: 10px;
  	}
31b7f2792   Kload   Upgrade to ownclo...
537
538
539
540
541
  
  .fc-event-vert .fc-event-inner {
  	position: relative;
  	z-index: 2;
  	}
03e52840d   Kload   Init
542
543
544
545
546
547
548
549
550
  	
  .fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay  */
  	position: absolute;
  	z-index: 1;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background: #fff;
31b7f2792   Kload   Upgrade to ownclo...
551
552
  	opacity: .25;
  	filter: alpha(opacity=25);
03e52840d   Kload   Init
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
  	}
  	
  .fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */
  .fc-select-helper .fc-event-bg {
  	display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */
  	}
  	
  /* resizable */
  	
  .fc-event-vert .ui-resizable-s {
  	bottom: 0        !important; /* importants override pre jquery ui 1.7 styles */
  	width: 100%      !important;
  	height: 8px      !important;
  	overflow: hidden !important;
  	line-height: 8px !important;
  	font-size: 11px  !important;
  	font-family: monospace;
  	text-align: center;
  	cursor: s-resize;
  	}
  	
  .fc-agenda .ui-resizable-resizing { /* TODO: better selector */
  	_overflow: hidden;
  	}