forked from developerish/tab-count
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
48 lines (45 loc) · 953 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 300px;
font-size: 12px;
font-family: Helvetica, Arial, sans-serif;
margin: 0;
padding: 0 10px 0 10px;
}
p.box {
margin: 15px 0px 10px 0px;
}
#search {
margin: 0px 0px 10px 0px;
padding: 5px;
width: 100%;
border: 1px solid #ccc;
border-radius: 4px;
}
#tabsTable {
position: relative;
margin-bottom: 5px;
right: 3px;
}
#tabsTable tr {
display: block;
width: 300px;
}
#tabsTable td {
padding: 0px 1px;
}
a.redlink {
color: #FF0000;
}
</style>
<script src="js/popup.js"></script>
</head>
<body>
<p class='box' id='windowTabs'></p>
<input type="search" id="search" placeholder="Search" autofocus>
<table id='tabsTable'></table>
</body>
</html>