-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Webview to scaffold sample execution-environment.yml file
- Loading branch information
Showing
12 changed files
with
954 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
sonar.cpd.exclusions=\ | ||
src/features/lightspeed/playbookGeneration.ts, \ | ||
src/features/lightspeed/roleGeneration.ts, \ | ||
src/features/contentCreator/createSampleExecutionEnvPage.ts, \ | ||
src/webview/apps/contentCreator/createSampleExecutionEnvPageApp.ts, \ | ||
test/ui-test/*.ts |
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
99 changes: 99 additions & 0 deletions
99
media/contentCreator/createSampleExecutionEnvPageStyle.css
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,99 @@ | ||
@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; | ||
} | ||
|
||
.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-destination-path { | ||
display: flex; /* Use flexbox */ | ||
flex-direction: row; /* Arrange child elements vertically */ | ||
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; | ||
} | ||
|
||
#log-to-file-options-div { | ||
display: none; | ||
flex-direction: column; | ||
border-style: dotted; | ||
border-color: var(--focus-border); | ||
border-width: 0.5px; | ||
padding: 8px; | ||
} | ||
|
||
.log-level-div { | ||
margin: 4px 0px; | ||
} |
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
Oops, something went wrong.