-
Notifications
You must be signed in to change notification settings - Fork 0
/
pat-toggle.html
37 lines (36 loc) · 1.59 KB
/
pat-toggle.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>My Toggle Pattern demo</title>
<script type="text/javascript" src="patterns-1.5.0-7762d27e.min.js"></script>
<link type="text/css" rel="stylesheet" href="patterns.css">
</head>
<body>
<fielset id="document-filters" class="closed fancy-select">
<!--
<p class="legend" data-pat-toggle="#document-filters; open closed; class">Filters</p>
<a href="#"
class="pat-toggle" data-pat-toggle="#document-filters; open closed; class">Filters</a>
-->
<p class="pat-toggle" data-pat-toggle="#document-filters; open closed; class">Filters</p>
<fielset class="flyout">
<fielset class="sorting radio-list">
<label><input name="sorting" type="radio" checked="checked" />Sort by date</label>
<label><input name="sorting" type="radio" />Sort by author</label>
<label><input name="sorting" type="radio" />Sort by type</label>
</fielset>
<fielset class="sorting check-list">
<label><input type="checkbox" />Show my documents only</label>
</fielset>
<fielset class="grouping radio-list">
<label><input name="grouping" type="radio" checked="checked" />Group by label</label>
<label><input name="grouping" type="radio" />Group by author</label>
<label><input name="grouping" type="radio" />Group by period</label>
<label><input name="grouping" type="radio" />Group by type</label>
<label><input name="grouping" type="radio" />No grouping</label>
</fielset>
</fielset>
</fielset>
</body>
</html>