Skip to content

Commit 186cda3

Browse files
author
Timothy Johnson
committed
Small changes
1 parent 123f2ab commit 186cda3

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

dest/devtools/panel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
display: flex;
1313
margin: 0;
1414
height: 100%;
15+
color: rgb(74, 74, 79);
1516
font-size: 11px;
1617
font-family: monospace;
17-
color: rgb(74, 74, 79);
1818
}
1919

2020
ul {

dest/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"96": "icon-96.png",
1111
"128": "icon-128.png"
1212
},
13-
"permissions": ["tabs", "webRequest", "webRequestBlocking", "<all_urls>"],
13+
"permissions": ["tabs", "<all_urls>"],
1414
"background": {
1515
"scripts": ["background.js"]
1616
},

src/App.svelte

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
<style>
1717
.node-tree {
1818
display: flex;
19-
overflow: hidden;
2019
flex: 1 1 0;
2120
flex-direction: column;
2221
}
@@ -57,7 +56,10 @@
5756
{#if $rootNodes.length}
5857
<div class="node-tree">
5958
<Toolbar>
60-
<input placeholder="Search Tree" bind:value={$searchValue} />
59+
<input
60+
type="search"
61+
placeholder="Search Tree"
62+
bind:value={$searchValue} />
6163
<VisibilityButton />
6264
</Toolbar>
6365
{#if $searchResult}

src/VisibilityButton.svelte

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
<style>
88
button {
99
position: relative;
10+
z-index: 1;
11+
color: rgb(35, 38, 39);
12+
}
13+
14+
button:active {
15+
color: rgb(35, 38, 39);
1016
}
1117
1218
div {
@@ -15,15 +21,13 @@
1521
right: 0;
1622
bottom: 0;
1723
left: 0;
18-
z-index: 1;
1924
cursor: default;
2025
}
2126
2227
ul {
2328
position: absolute;
2429
top: 32px;
2530
right: -20px;
26-
z-index: 2;
2731
padding: 6px 0;
2832
border: 1px solid rgb(224, 224, 226);
2933
border-radius: 2px;

0 commit comments

Comments
 (0)