-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpopup.html
71 lines (71 loc) · 2.21 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="bulma.min.css" />
<link rel="stylesheet" href="materialdesignicons.min.css" />
<link rel="stylesheet" href="balloon.min.css" />
<link rel="stylesheet" href="popup.css" />
<title>Monolith of Web</title>
</head>
<body>
<main>
<button id="get-monolith-btn" class="button is-dark">
<span class="icon">
<i class="mdi mdi-arrow-down-bold-box"></i>
<span id="get-monolith-msg">Get Monolith</span>
</span>
</button>
<article id="error-message" class="message is-danger">
<div class="message-header">
<p id="error-title"></p>
<button id="error-close" class="delete" aria-label="delete"></button>
</div>
<div id="error-body" class="message-body"></div>
</article>
</main>
<div class="config-panel">
<span
id="config-js"
class="config-btn icon is-medium tooltip-bg-normal"
aria-label="Toggle including javascript"
data-balloon-pos="up-left"
>
<i class="mdi mdi-language-javascript mdi-24px"></i>
</span>
<span
id="config-css"
class="config-btn icon is-medium tooltip-bg-normal"
aria-label="Toggle including CSS"
data-balloon-pos="up"
>
<i class="mdi mdi-language-css3 mdi-24px"></i>
</span>
<span
id="config-iframes"
class="config-btn icon is-medium tooltip-bg-normal"
aria-label="Toggle including <iframe/>"
data-balloon-pos="up"
>
<i class="mdi mdi-iframe-outline mdi-24px"></i>
</span>
<span
id="config-images"
class="config-btn icon is-medium tooltip-bg-normal"
aria-label="Toggle including images"
data-balloon-pos="up"
>
<i class="mdi mdi-file-image mdi-24px"></i>
</span>
<span
id="config-allow-cors"
class="config-btn icon is-medium tooltip-bg-danger"
aria-label="Toggle allowing CORS requests"
data-balloon-pos="up-right"
>
<i class="mdi mdi-shield-check mdi-24px"/></i>
</span>
</div>
<script src="./popup.js"></script>
</body>
</html>