Skip to content

Commit

Permalink
Changed styles of checkbox and expand questions (#180)
Browse files Browse the repository at this point in the history
* added comment explaining why node_modules is included in vsix despite using webpack

* changed styles of checkbox and expand questions

* border-color: var(--vscode-panel-border, #cecece); /* TODO: replace with vscode-settings-textInputBorder when supported by Theia */

* "version": "0.0.54"

Co-authored-by: Tomer Epstein <[email protected]>
  • Loading branch information
perspectivus1 and tomer-epstein authored Mar 12, 2020
1 parent 1ec4b93 commit 8741ad7
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "Apache 2.0",
"description": "Provide rich user experience for Yeoman generators using VSCode extension or the browser",
"repository": "https://github.com/SAP/yeoman-ui",
"version": "0.0.53",
"version": "0.0.54",
"engines": {
"vscode": "^1.39.2"
},
Expand Down
20 changes: 20 additions & 0 deletions frontend/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
},
"preLaunchTask": "serve"
}
]
}
13 changes: 13 additions & 0 deletions frontend/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "serve",
"type": "npm",
"script": "serve",
"problemMatcher": []
}
]
}
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@mdi/font": "^4.9.95",
"@sap-devx/inquirer-gui": "0.0.31",
"@sap-devx/inquirer-gui": "0.0.33",
"@sap-devx/inquirer-gui-login-plugin": "0.0.2",
"@sap-devx/inquirer-gui-file-browser-plugin": "0.0.3",
"core-js": "2.6.6",
Expand Down
9 changes: 7 additions & 2 deletions frontend/src/assets/css/globalStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ form.inquirer-gui .v-text-field fieldset {
}

form.inquirer-gui :not(.v-input--is-focused).v-text-field fieldset {
border-color: var(--vscode-settings-textInputBorder, #cecece);
border-color: var(--vscode-panel-border, #cecece);
/* TODO: replace with vscode-settings-textInputBorder when supported by Theia */
}

form.inquirer-gui .v-input--is-focused.v-text-field fieldset {
Expand All @@ -128,7 +129,11 @@ form.inquirer-gui .theme--light:not(.v-item--active) .v-icon {
color: var(--vscode-input-foreground, white);
}

form.inquirer-gui div.v-card{
form.inquirer-gui div.theme--light.v-card.v-card--outlined {
border-width: thin;
border-style: solid;
border-color: var(--vscode-panel-border, #cecece);
/* TODO: replace with vscode-settings-textInputBorder when supported by Theia */
background-color: var(--vscode-input-background, #3c3c3c);
}

Expand Down

0 comments on commit 8741ad7

Please sign in to comment.