Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellenn-A committed Nov 15, 2024
1 parent 623c2ff commit 6029b3b
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 19 deletions.
2 changes: 1 addition & 1 deletion public/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ main {
background-position: 10px;
padding-left: 40px;
font-size: 12px;
min-width: 200px;
min-width: 100px;
margin-bottom: 5px;
}

Expand Down
6 changes: 4 additions & 2 deletions public/styles/shared.css
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@
background-repeat: no-repeat;
background-position: center;
}

#connection-search-input {
min-width: 210px;
}
.search-window {
border-color: var(--text-color-sub);
border-radius: 5px;
Expand All @@ -165,7 +167,7 @@
background-position: 10px;
padding-left: 40px;
font-size: 12px;
min-width: 200px;
min-width: 100px;
}

.accented-container {
Expand Down
8 changes: 4 additions & 4 deletions src/views/connection/__tests__/connection.test.ts.snap

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/views/connection/connection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ export default class ConnectionTemplates {
hx-target="#search-results"
hx-select="#search-results"
hx-swap="outerHTML"
oninput="this.style.width = (Math.max(210, (this.value.length + 9) * 6.5)) + 'px';"
></input>
</div>
<table class="list-page">
Expand Down
10 changes: 5 additions & 5 deletions src/views/credentials/__tests__/index.test.ts.snap

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/views/credentials/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export default class CredentialListTemplates {
hx-target="#search-results"
hx-select="#search-results"
hx-swap="outerHTML"
oninput="this.style.width = (Math.max(200, (this.value.length + 9) * 6.5)) + 'px';"
></input>
</div>
<table class="list-page">
Expand Down
8 changes: 4 additions & 4 deletions src/views/queries/__tests__/queriesList.test.ts.snap

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/views/queries/queriesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export default class QueryListTemplates {
hx-target="#search-results"
hx-select="#search-results"
hx-swap="outerHTML"
oninput="this.style.width = (Math.max(200, (this.value.length + 9) * 6.5)) + 'px';"
></input>
</div>
<table class="list-page">
Expand Down

0 comments on commit 6029b3b

Please sign in to comment.