forked from MMRIZE/MMM-CalendarExt3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopover.html
38 lines (37 loc) · 969 Bytes
/
popover.html
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
<template id="CX3_T_POPOVER">
<div class="popover" id="CX3_POPOVER" popover="auto">
<div class="container"></div>
<template id="CX3_T_EVENTDETAIL">
<div class="header">
<div class="symbol"></div>
<div class="title"></div>
</div>
<div class="content">
<dl class="criteria"></dl>
<template id="CX3_T_CRITERIA">
<div class="criteriaItem">
<dt class="name"></dt>
<dd class="value"></dd>
</div>
</template>
</div>
</template>
<template id="CX3_T_EVENTLIST">
<div class="header">
<div class="date"></div>
</div>
<div class="content">
<ul class="list"></ul>
<template id="CX3_T_EVENTITEM">
<li class="eventItem">
<div class="symbol part"></div>
<div class="title part"></div>
<div class="time full"></div>
<div class="description full"></div>
<div class="location full"></div>
</li>
</template>
</div>
</template>
</div>
</template>