forked from Bramas/Synced-Injected-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
81 lines (79 loc) · 2 KB
/
popup.html
File metadata and controls
81 lines (79 loc) · 2 KB
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
height: 581px;
width: 791px;
margin: 1px;
overflow: hidden;
}
#editor {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
#editor-wrapper {
position: relative;
height: 507px;
width: 790px;
}
.control-group {
margin-bottom: .5em;
}
.control-group label {
text-align: right;
display: inline-block;
vertical-align: middle;
width: 10em;
margin: 0 1em 0 0;
}
.controls {
margin: 1.5em 0 0 11em;
}
input {
padding: .5em .6em;
display: inline-block;
border: 1px solid #ccc;
-webkit-box-shadow: inset 0 1px 3px #ddd;
box-shadow: inset 0 1px 3px #ddd;
border-radius: 4px;
vertical-align: middle;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
}
button {
font-family: inherit;
font-size: 100%;
padding: .5em 1em;
color: #444;
color: rgba(0,0,0,.8);
border: 1px solid #999;
border: none transparent;
background-color: #e6e6e6;
text-decoration: none;
border-radius: 2px;
background-color: #0078e7;
color: #fff;
}
</style>
</head>
<body>
<div class="control-group">
<label for="input-reg-host">Hostname</label>
<input id="input-reg-host" type="text" placeholder="Hostname">
</div>
<div class="control-group">
<label for="input-reg-path">Url Path</label>
<input id="input-reg-path" type="text" placeholder="Path">
</div>
<div id="editor-wrapper">
<div id="editor"></div>
</div>
<script src="/vendor/ace/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="popup.js"></script>
</body>
</html>