-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtabwindow.html
More file actions
97 lines (83 loc) · 1.99 KB
/
tabwindow.html
File metadata and controls
97 lines (83 loc) · 1.99 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
88
89
90
91
92
93
94
95
96
<!doctype html>
<html>
<head>
<title>ctrl-p search</title>
<script type="text/javascript" src="jQuery-2.0.3.js"></script>
<script type="text/javascript" src="fuse.min.js"></script>
<style>
html, body {
width: 600px;
height: 300px;
padding: 3px;
margin: 0px;
background-color: #444444;
color: #c8c8c8;
}
input {
width: 590px;
padding: 0px;
margin: 0px;
height: 28px;
background-color: #e6e6e6;
color: black;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
margin-top: 5px;
height: 300px;
width: 593px;
overflow-y: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 16px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 10px 0px 20px rgba(15,15,15,1);
}
::-webkit-scrollbar-thumb {
background-color: #404040;
border: 3px solid transparent;
border-radius: 9px;
background-clip: content-box;
}
li {
display: block;
font: 100 12px/1.4 Helvetica, Verdana, sans-serif;
border-bottom: 2px groove rgba(120, 120, 120, .5);
padding: 4px;
padding-left: 45px;
}
li span {
color: #eee;
padding: 0px;
margin: 0px;
}
li:first-child {
border-top: 2px groove rgba(120, 120, 120, .5);
}
li:last-child {
border: none;
}
li.selected {
background: #606060;
}
.tab {
background-color: #404040;
}
.history {
background-color: #446484;
}
.bookmark {
background-color: #5C5630;
}
</style>
<script src="tabwindow.js"></script>
</head>
<body>
<input type="text" id="searchFilter" placeholder="Search..." autofocus />
<ul id="searchResults"></ul>
</body>
</html>