-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
executable file
·51 lines (49 loc) · 1.26 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
<!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%;
}
.container{
border: 0px;
}
#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>System Notification</h3>
<p id="status"></p>
<button class="btn btn-warning" id="btnClearNotifs">Clear notifications</button>
</div>
</br>
<p align="center">v 1.0.0</p>
</div>
<script src="/scripts/jquery.min.js" type="text/javascript"></script>
<script src="/scripts/extension.js" type="text/javascript"></script>
</body>
</html>