-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (89 loc) · 4 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedianXL Filter editor</title>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/1.0.1/css/bulma.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/2.1.8/css/dataTables.bulma.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/select2.min.js"></script>
<script src="https://cdn.datatables.net/2.1.8/js/dataTables.js"></script>
<script src="https://cdn.datatables.net/2.1.8/js/dataTables.bulma.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Sortable/1.14.0/Sortable.min.js"></script>
<script src="script.js" defer></script>
</head>
<body class="section" class="no-scrollbar" style="padding-top: 0; padding-bottom: 0">
<div class="content">
<h1 class="is-size-2 diablo-font">
Median XL Filter editor
<div class="is-size-5">by Azadi</div>
</h1>
<div class="field is-horizontal v-center">
<div class="field-body">
<label class="checkbox">
<input id="defaultShowItems" type="checkbox" class="checkbox-input" checked="">
Show Items by default
</label>
</div>
<a href="https://github.com/azadix/mxl-filter-editor" target="_blank">
<svg class="white-fill" height="32" viewBox="0 0 16 16" width="32" aria-hidden="true">
<path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8a8 8 0 005.47 7.59c.4.07.55-.17.55-.38
0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52
0-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95
0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.22 2.2.82a7.65 7.65 0 012 0c1.53-1.04
2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15
0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48
0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8 8 0 0016 8c0-4.42-3.58-8-8-8z">
</path>
</svg>
</a>
</div>
<div>
<div class="field is-horizontal">
<div class="field-label is-normal">
<label class="label">Name</label>
</div>
<div class="field-body">
<div class="field">
<p class="control">
<input class="input" id="filterName" type="text" placeholder="New filter">
</p>
</div>
</div>
<button class="button is-danger is-outlined" id="pasteFromClipboard">
<i class="fas fa-paste pr-1"></i>
Paste from clipboard
</button>
<button class="button is-danger is-outlined" id="copyToClipboard">
<i class="fas fa-clipboard pr-1"></i>
Copy to clipboard
</button>
</div>
</div>
</div>
<table id="rulesTable" class="table is-hoverable is-fullwidth">
<thead>
<tr>
<th data-dt-order="disable">ID</th>
<th data-dt-order="disable"></th>
<th data-dt-order="disable">Is active</th>
<th data-dt-order="disable">Action</th>
<th data-dt-order="disable">Ethereal</th>
<th data-dt-order="disable">Quality</th>
<th data-dt-order="disable">Condition</th>
<th data-dt-order="disable">CLVL</th>
<th data-dt-order="disable">ILVL</th>
<th data-dt-order="disable">Notify</th>
<th data-dt-order="disable">Map</th>
<th data-dt-order="disable">Function</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>