-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
55 lines (49 loc) · 1.38 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
<!doctype html>
<html>
<head>
<style type="text/css">
body {
margin: 10px;
white-space: nowrap;
width: 225px;
}
#container {
align-items: center;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 50px;
}
.version, .theme{
display: flex;
justify-content: space-between;
width: 100%;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<div id="container">
<div class="version">
<span>Select swagger version</span>
<select id="swagger-version">
<option selected value="2.x">2.x</option>
<option value='3.x'>3.x</option>
</select>
</div>
<div class="theme">
<span>Select your theme</span>
<select id="dropdown">
<option selected value='none'>none</option>
<option value="feeling-blue">feeling-blue</option>
<option value="flattop">flattop</option>
<option value="material">material</option>
<option value="monokai">monokai</option>
<option value="muted">muted</option>
<option value="newspaper">newspaper</option>
<option value="outline">outline</option>
</select>
</div>
</div>
</body>
</html>