-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (42 loc) · 1.67 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/topcoat-desktop-dark.min.css" />
<link id="hostStyle" rel="stylesheet" href="css/styles.css" />
<title>Padding</title>
</head>
<body class="hostElt">
<div id="content">
<div class="row">
<input type="text" class="topcoat-text-input paddings" id="padding_y" placeholder="Top/Bottom">
<br> <br>
<input type="text" class="topcoat-text-input paddings" id="padding_x" placeholder="Left/Right"> <br><br>
<input type="text" class="topcoat-text-input paddings" id="border" value="0"> <br><br>
<label class="topcoat-checkbox">
<input type="checkbox" id="align_to_text_x">
<div class="topcoat-checkbox__checkmark"></div>
<|
</label>
<br>
<br>
<button class="topcoat-button--cta" id="add_padding">Add Padding</button>
<button class="topcoat-button" id="save">Save</button>
</div>
<div class="row">
<select name="preset" id="presets">
<option value="false">Select</option>
</select>
<br><br>
<button class="topcoat-button--cta" id="set_default">Default</button>
<button class="topcoat-button" id="delete">Delete</button>
<br><br>
</div>
</div>
<script src="js/min/libs/CSInterface.min.js"></script>
<script src="js/min/libs/storage.min.js"></script>
<script src="js/min/libs/jquery-2.0.2.min.js"></script>
<script src="js/min/themeManager.min.js"></script>
<script src="js/min/main.min.js"></script>
</body>
</html>