-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevToolsPanel.html
More file actions
66 lines (66 loc) · 1.38 KB
/
devToolsPanel.html
File metadata and controls
66 lines (66 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="./src/devToolsPanel.js"></script>
<style>
.controll-bar {
height: 40px;
line-height: 40px;
}
.table-wrapper {
width: 100%;
height: calc(100vh - 60px);
position: relative;
overflow-y: auto;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 98%;
border: 1px solid #dddddd;
}
td,
th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr td:first-child,
tr th:first-child {
border-left: 0;
}
tr td:last-child,
tr th:last-child {
border-right: 0;
}
thead th {
position: sticky;
top: 0;
}
/* Theme specific */
tr.dark {
color: #dddddd;
}
tr.default {
color: #000000;
}
</style>
</head>
<body>
<div class="controll-bar">
<button class="controll-bar__item" id="clear-content">clear</button>
</div>
<div id="content-wrapper" class="table-wrapper">
<table>
<thead>
<tr id="header-row">
<th>Origin</th>
<th>Data</th>
</tr>
</thead>
<tbody id="post-message-table-body"></tbody>
</table>
</div>
</body>
</html>