-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a webview to scaffold plugins through creator add subcommand (#1729)
* Add a webview to scaffold plugins through creator add subcommand * Add addPluginPageApp.ts entry in codecov.yml file * logs cleanup * no need of force and ANSIBLE_CREATOR_VERSION_MIN * try setting NODE_OPTIONS in ci.yaml * try setting NODE_OPTIONS in taskfile * Add NODE_OPTIONS env var in the package step * Fix linting errors and sort quicklintViews for add section * Test improvements in contentCreatorUiTest for plugin webview testing * remove NODE_OPTIONS from where that's not needed --------- Co-authored-by: Alison Hart <[email protected]>
- Loading branch information
1 parent
667c146
commit f137936
Showing
12 changed files
with
845 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
@import url(../baseStyles/baseFormStyle.css); | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.element { | ||
margin-bottom: 14px; | ||
} | ||
|
||
vscode-text-field { | ||
margin-top: 6px; | ||
margin-bottom: 6px; | ||
} | ||
|
||
vscode-text-area { | ||
margin-top: 6px; | ||
margin-bottom: 6px; | ||
} | ||
|
||
.plugin-name-div { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
#plugin-name { | ||
width:49%; | ||
display:inline-block; | ||
} | ||
|
||
.plugin-type-div { | ||
display: flex; /* Use flexbox */ | ||
flex-direction: row; /* Arrange child elements vertically */ | ||
margin-top: 12px; | ||
margin-bottom: 30px; | ||
width: 100%; | ||
} | ||
|
||
.checkbox-div { | ||
display: flex; /* Use flexbox */ | ||
flex-direction: column; /* Arrange child elements vertically */ | ||
margin-top: 22px; | ||
margin-bottom: 10px; | ||
width: 100%; | ||
} | ||
|
||
.verbose-div { | ||
display: flex; /* Use flexbox */ | ||
flex-direction: row; /* Arrange child elements vertically */ | ||
margin-top: 12px; | ||
margin-bottom: 30px; | ||
width: 100%; | ||
} | ||
|
||
vscode-dropdown { | ||
width: 200px; | ||
} | ||
|
||
.full-collection-path { | ||
display: flex; /* Use flexbox */ | ||
flex-direction: row; /* Arrange child elements vertically */ | ||
color: var(--vscode-descriptionForeground); | ||
} | ||
|
||
.required-fields { | ||
margin-top: 10px; | ||
color: var(--vscode-descriptionForeground); | ||
} | ||
|
||
.group-buttons { | ||
display: flex; /* Use flexbox */ | ||
flex-direction: row; /* Arrange child elements vertically */ | ||
} | ||
|
||
.p-collection-name { | ||
font-style: italic; | ||
} | ||
|
||
vscode-button { | ||
margin: 0px 3px; | ||
} | ||
|
||
vscode-checkbox i { | ||
color: var(--vscode-descriptionForeground); | ||
font-size: small; | ||
} | ||
|
||
#ade-docs-link { | ||
margin-left: 30px; | ||
font-style: italic; | ||
} | ||
|
||
.dropdown-container { | ||
box-sizing: border-box; | ||
display: flex; | ||
flex-flow: column nowrap; | ||
align-items: flex-start; | ||
justify-content: flex-start; | ||
} | ||
|
||
.dropdown-container label { | ||
display: block; | ||
color: var(--vscode-foreground); | ||
cursor: pointer; | ||
font-size: var(--vscode-font-size); | ||
line-height: normal; | ||
margin-bottom: 2px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.