-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
50 lines (49 loc) · 1.27 KB
/
Copy pathpopup.html
File metadata and controls
50 lines (49 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<style>
.container {
max-height: 600px;
min-height: 300px;
width: 250px;
border: 2px solid rgba(0,0,0,0.3);
border-radius: 2px;
background: white;
}
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
max-width: 400px;
}
.patient-list {
max-height: 250px;
overflow-y: scroll;
overflow-x: hidden;
max-width: 100%;
}
</style>
<div class="container">
<div class="page-header">
<h3>Chromie Pop</h3>
<p id="status"></p>
</div>
<div class="form-group">
<input class="form-control" type="text" id="linkstext">
</div>
<div>
<button class="btn btn-primary" id="changelinks">Change</button>
</div>
</div>
<script src="/scripts/jquery.min.js" type="text/javascript"></script>
<script src="/scripts/extension.js" type="text/javascript"></script>
</body>
</html>