Skip to content

Commit

Permalink
Merge pull request #171 from KxSystems/ecmel-misc
Browse files Browse the repository at this point in the history
fixed ghost scroll bar in data source view
  • Loading branch information
ecmel authored Oct 30, 2023
2 parents 647f8b6 + 941ae62 commit 9a182b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/webview/components/kdbDataSourceView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ export class KdbDataSourceView extends LitElement {
<div class="col">
<div class="row">
<vscode-text-field
class="grow"
class="w-full"
placeholder="Data Source Name"
value="${this.name}"
@input="${(event: Event) =>
Expand All @@ -706,7 +706,7 @@ export class KdbDataSourceView extends LitElement {
@click="${() => (this.selectedType = DataSourceTypes.SQL)}"
>SQL</vscode-panel-tab
>
<vscode-panel-view class="panel">
<vscode-panel-view>
<div class="col">
<div class="row">
<div class="dropdown-container">
Expand Down Expand Up @@ -864,7 +864,7 @@ export class KdbDataSourceView extends LitElement {
</div>
</vscode-panel-view>
<vscode-panel-view class="panel">
<vscode-panel-view>
<div class="col">
<div class="row">
<div class="dropdown-container">
Expand Down
4 changes: 2 additions & 2 deletions src/webview/components/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export const vscodeStyles = css`
`;

export const kdbStyles = css`
.panel {
width: 47em;
.w-full {
min-width: 50em;
}
.col {
Expand Down

0 comments on commit 9a182b3

Please sign in to comment.