-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathui.html
More file actions
87 lines (80 loc) · 1.86 KB
/
ui.html
File metadata and controls
87 lines (80 loc) · 1.86 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
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<!--Include Bootstrap-->
<link rel="stylesheet" type="text/css" href="FlatUI/css/vendor/bootstrap/css/bootstrap.min.css">
<!--Include FlatUI-->
<link rel="stylesheet" type="text/css" href="FlatUI/css/flat-ui.min.css">
<!--Custom CSS Code-->
<style type="text/css">
.addButton {
float: right;
margin-right: 20px;
font-size: 24px;
cursor: pointer;
}
.addButton:hover {
color: #1ABC9C;
transition: color 300ms linear;
}
.removeButton {
float: right;
margin-right: 20px;
font-size: 24px;
cursor: pointer;
}
.removeButton:hover {
color: #E74C3C;
transition: color 300ms linear;
}
.listHeading {
margin-bottom: 2px;
}
.listContainer {
max-height: 500px;
overflow-x: hidden;
overflow-y: auto;
}
.noItems {
text-align: center;
}
body {
width: 300px;
height: 500px;
}
.settingsIcon {
position: relative;
top: 0px;
left: 238px;
cursor: pointer;
}
.settingsIcon:hover {
color: #2ECC71;
transition: color 300ms linear;
}
</style>
<!--Include jQuery-->
<script type="text/javascript" src="jquery.min.js"></script>
<!--Include UI generator-->
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<!--Page Container-->
<div class="container-fluid clearfix" style="height: 500px;">
<!--Extension Settings Button-->
<span class="fui-gear settingsIcon" id="settings_button"></span>
<!--Pending Credentials List-->
<div class="list-group listContainer" id="credential_list">
<!--<span class="list-group-item">
<h6 class="list-item-heading listHeading">First Element</h6>
<small class="list-item-text">username</small>
<span class="fui-cross-circle removeButton"></span>
<span class="fui-plus-circle addButton"></span>
<br>
<small class="list-item-text">****</small>
</span>
<hr>-->
</div>
</div>
</body>
</html>