Skip to content

Commit 4e131f1

Browse files
committed
Merged in [16589] from rjsparks@nostrum.com:
Show a calendar of upcoming meetings. Fixes ietf-tools#2719. - Legacy-Id: 16602 Note: SVN reference [16589] has been migrated to Git commit d3b70a4
1 parent 2418459 commit 4e131f1

11 files changed

Lines changed: 11390 additions & 0 deletions

File tree

ietf/externals/static/fullcalendar/core/main.css

Lines changed: 900 additions & 0 deletions
Large diffs are not rendered by default.

ietf/externals/static/fullcalendar/core/main.js

Lines changed: 8679 additions & 0 deletions
Large diffs are not rendered by default.

ietf/externals/static/fullcalendar/core/main.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ietf/externals/static/fullcalendar/core/main.min.js

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*!
2+
FullCalendar Day Grid Plugin v4.2.0
3+
Docs & License: https://fullcalendar.io/
4+
(c) 2019 Adam Shaw
5+
*/
6+
/* DayGridView
7+
--------------------------------------------------------------------------------------------------*/
8+
/* day row structure */
9+
.fc-dayGridWeek-view .fc-content-skeleton,
10+
.fc-dayGridDay-view .fc-content-skeleton {
11+
/* there may be week numbers in these views, so no padding-top */
12+
padding-bottom: 1em;
13+
/* ensure a space at bottom of cell for user selecting/clicking */ }
14+
15+
.fc-dayGrid-view .fc-body .fc-row {
16+
min-height: 4em;
17+
/* ensure that all rows are at least this tall */ }
18+
19+
/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
20+
.fc-row.fc-rigid {
21+
overflow: hidden; }
22+
23+
.fc-row.fc-rigid .fc-content-skeleton {
24+
position: absolute;
25+
top: 0;
26+
left: 0;
27+
right: 0; }
28+
29+
/* week and day number styling */
30+
.fc-day-top.fc-other-month {
31+
opacity: 0.3; }
32+
33+
.fc-dayGrid-view .fc-week-number,
34+
.fc-dayGrid-view .fc-day-number {
35+
padding: 2px; }
36+
37+
.fc-dayGrid-view th.fc-week-number,
38+
.fc-dayGrid-view th.fc-day-number {
39+
padding: 0 2px;
40+
/* column headers can't have as much v space */ }
41+
42+
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
43+
float: right; }
44+
45+
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number {
46+
float: left; }
47+
48+
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number {
49+
float: left;
50+
border-radius: 0 0 3px 0; }
51+
52+
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number {
53+
float: right;
54+
border-radius: 0 0 0 3px; }
55+
56+
.fc-dayGrid-view .fc-day-top .fc-week-number {
57+
min-width: 1.5em;
58+
text-align: center;
59+
background-color: #f2f2f2;
60+
color: #808080; }
61+
62+
/* when week/day number have own column */
63+
.fc-dayGrid-view td.fc-week-number {
64+
text-align: center; }
65+
66+
.fc-dayGrid-view td.fc-week-number > * {
67+
/* work around the way we do column resizing and ensure a minimum width */
68+
display: inline-block;
69+
min-width: 1.25em; }

0 commit comments

Comments
 (0)