summaryrefslogtreecommitdiffstats
path: root/comm/calendar/base/content/printing-template.html
blob: f7ed5fdbca07507f11c6b1a4745319d671a56454 (plain)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<!DOCTYPE html>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, you can obtain one at http://mozilla.org/MPL/2.0/. -->
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta charset="utf-8" />
    <title id="title"></title>
    <style>
      table {
        width: 100%;
        border: 1px black outset;
        border-spacing: 0;
        page-break-inside: avoid;
        display: grid;
      }

      tbody,
      tr,
      th,
      td {
        display: contents;
      }

      th > div,
      td > div {
        border: 1px black inset;
        padding: 2px;
        overflow: hidden;
      }

      td > div {
        min-height: 100px;
      }

      .day-title {
        text-align: end;
        font-size: 13px;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style: none;
      }

      li {
        margin-block-start: 2px;
        padding: 2px;
        font-size: 11px;
      }

      #list-container .vevent {
        border: 1px solid black;
        padding: 0;
        margin-bottom: 10px;
      }

      #list-container .key {
        font-style: italic;
        margin-inline-start: 3px;
      }

      #list-container .value {
        margin-inline-start: 20px;
      }

      #list-container .summarykey {
        display: none;
      }

      #list-container .summary {
        font-weight: bold;
        margin: 0;
        padding: 3px;
      }

      #list-container .description {
        white-space: pre-wrap;
      }

      #month-container table {
        grid-template-columns: repeat(7, 1fr);
      }

      #month-container .month-title {
        grid-column: 1 / 8;
      }

      #week-container table {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: min-content 2fr 2fr 1fr 1fr;
      }

      #week-container .week-title {
        grid-column: 1 / 3;
      }

      #week-container .monday-box > div {
        grid-column: 1;
        grid-row: 2;
      }

      #week-container .tuesday-box > div {
        grid-column: 1;
        grid-row: 3;
      }

      #week-container .wednesday-box > div {
        grid-column: 1;
        grid-row: 4 / 6;
      }
    </style>
  </head>
  <body>
    <!-- This is what is printed when printing the calendar.
       It is filled dynamically by calPrintUtils.jsm. -->
    <div id="list-container"></div>
    <div id="month-container"></div>
    <div id="week-container"></div>
    <div id="tasks-list-box" hidden="true">
      <h3 id="tasks-title"></h3>
      <ul id="task-container" class="taskList"></ul>
    </div>

    <!-- List item template for the "list" layout. -->
    <template id="list-item-template">
      <div class="vevent">
        <div class="row summaryrow">
          <div class="key summarykey"></div>
          <div class="value summary"></div>
        </div>
        <div class="row intervalrow">
          <div class="key intervalkey"></div>
          <div class="value dtstart"></div>
        </div>
        <div class="row locationrow">
          <div class="key locationkey"></div>
          <div class="value location"></div>
        </div>
        <div class="row descriptionrow">
          <div class="key descriptionkey"></div>
          <div class="value description"></div>
        </div>
      </div>
    </template>

    <!-- Month template for the "monthly grid" layout. -->
    <template id="month-template">
      <table>
        <tr>
          <th><div class="month-title"></div></th>
        </tr>
        <tr>
          <th><div></div></th>
          <th><div></div></th>
          <th><div></div></th>
          <th><div></div></th>
          <th><div></div></th>
          <th><div></div></th>
          <th><div></div></th>
        </tr>
      </table>
    </template>

    <!-- Week template for the "monthly grid" layout. -->
    <template id="month-week-template">
      <tr>
        <td>
          <div>
            <div class="day-title"></div>
            <ul class="items"></ul>
          </div>
        </td>
        <td>
          <div>
            <div class="day-title"></div>
            <ul class="items"></ul>
          </div>
        </td>
        <td>
          <div>
            <div class="day-title"></div>
            <ul class="items"></ul>
          </div>
        </td>
        <td>
          <div>
            <div class="day-title"></div>
            <ul class="items"></ul>
          </div>
        </td>
        <td>
          <div>
            <div class="day-title"></div>
            <ul class="items"></ul>
          </div>
        </td>
        <td>
          <div>
            <div class="day-title"></div>
            <ul class="items"></ul>
          </div>
        </td>
        <td>
          <div>
            <div class="day-title"></div>
            <ul class="items"></ul>
          </div>
        </td>
      </tr>
    </template>

    <!-- Week template for the "weekly planner" layout. -->
    <template id="week-template">
      <table>
        <tr>
          <th>
            <div class="week-title"></div>
          </th>
        </tr>
        <tr>
          <td class="monday-box">
            <div>
              <div class="day-title"></div>
              <ul class="items"></ul>
            </div>
          </td>
          <td class="tuesday-box">
            <div>
              <div class="day-title"></div>
              <ul class="items"></ul>
            </div>
          </td>
          <td class="wednesday-box">
            <div>
              <div class="day-title"></div>
              <ul class="items"></ul>
            </div>
          </td>
          <td class="thursday-box">
            <div>
              <div class="day-title"></div>
              <ul class="items"></ul>
            </div>
          </td>
          <td class="friday-box">
            <div>
              <div class="day-title"></div>
              <ul class="items"></ul>
            </div>
          </td>
          <td class="saturday-box">
            <div>
              <div class="day-title"></div>
              <ul class="items"></ul>
            </div>
          </td>
          <td class="sunday-box">
            <div>
              <div class="day-title sunday-title"></div>
              <ul class="items"></ul>
            </div>
          </td>
        </tr>
      </table>
    </template>

    <!-- List item template for the "monthly grid" and "weekly planner" layouts. -->
    <template id="item-template">
      <li class="category-color-box calendar-color-box">
        <span class="item-interval"></span>
        <span class="item-title"></span>
      </li>
    </template>

    <!-- Template for tasks with no due date. -->
    <template id="task-template">
      <li>
        <input type="checkbox" class="task-checkbox" disabled="disabled" />
        <span class="task-title"></span>
      </li>
    </template>
  </body>
</html>