Skip to content

Commit

Permalink
UI-Theme (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomer-epstein authored Jan 27, 2020
1 parent e6724c2 commit 586fb1d
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 10 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.32",
"version": "0.0.33",
"engines": {
"vscode": "^1.39.2"
},
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ div.consoleClassVisible .v-footer {
white-space: pre-wrap;
}
.left-col {
background-color: var(--vscode-editorWidget-background, #252426);
background-color: var(--vscode-editorWidget-background, #252526);
}
.prompts-col {
overflow-y: scroll;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/assets/css/globalStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ p.question-label{

div.v-input__slot .v-select__selection,
.v-input div label.v-label{
color: var(--vscode-input-foreground, #cccccc);
color: var(--vscode-input-foreground, #cccccc) !important;
}
div.v-select-list div.v-list{
background-color: var(--vscode-input-background, #3c3c3c);
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ header.v-app-bar.v-toolbar, header.v-app-bar.v-toolbar .v-btn {
color: var(--vscode-foreground, #cccccc);
}
header.v-app-bar.v-toolbar {
border-bottom: 1px solid var(--vscode-editorWidget-background, #252426);
border-bottom: 1px solid var(--vscode-editorWidget-background, #252526);
box-shadow: none;
background-color: var(--vscode-editor-background, #1e1e1e) !important;
}
</style>
4 changes: 2 additions & 2 deletions frontend/src/components/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ div.v-stepper div.v-stepper__step {
border-bottom: 1px solid var(--vscode-editor-background, #1e1e1e);
}
.v-stepper__step--complete.v-stepper__step {
background: var(--vscode-editorWidget-background,#252426);
background: var(--vscode-editorWidget-background,#252526);
}
.v-stepper__step--active.v-stepper__step {
background: var(--vscode-editor-background, #1e1e1e);
}
.v-stepper__step--inactive.v-stepper__step {
background: var(--vscode-editorWidget-background,#252426);
background: var(--vscode-editorWidget-background,#252526);
}
span.v-stepper__step__step {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default {

<style scoped>
.v-card {
background-color: var(--vscode-input-background, #3c3c3c);
background-color: var(--vscode-editorWidget-background, #252526);
}
.v-card:hover {
background-color: var(--vscode-list-hoverBackground,#2a2d2e) !important;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/QuestionTypes/QuestionEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default {
<style scoped>
#question-editor >>> div.v-input__slot {
background-color: var(--vscode-input-background, #3c3c3c);
border: 1px solid var(--vscode-editorWidget-background, #252426);
border: 1px solid var(--vscode-editorWidget-background, #252526);
box-shadow: none;
border-radius: unset;
}
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/components/QuestionTypes/QuestionInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default {
color: var(--vscode-input-foreground, #cccccc) !important;
background-color: var(--vscode-input-background, #3c3c3c) !important;
border-radius: unset !important;
border: 1px solid var(--vscode-editorWidget-background, #252426);
border: 1px solid var(--vscode-editorWidget-background, #252526);
box-shadow: none;
}
#question-input >>> div.v-input__slot .v-select__selection {
Expand All @@ -61,4 +61,7 @@ export default {
.theme--light.v-input:not(.v-input--is-disabled) >>> input{
color: var(--vscode-input-foreground, #cccccc);
}
.theme--light.v-input:not(.v-input--is-disabled) >>> input::placeholder{
color: var(--vscode-editorCodeLens-foreground, #999999);
}
</style>
2 changes: 1 addition & 1 deletion frontend/src/components/QuestionTypes/QuestionList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
color: var(--vscode-input-foreground, #cccccc) !important;
background-color: var(--vscode-input-background, #3c3c3c) !important;
border-radius: unset;
border: 1px solid var(--vscode-editorWidget-background, #252426);
border: 1px solid var(--vscode-editorWidget-background, #252526);
box-shadow: none;
}
Expand Down

0 comments on commit 586fb1d

Please sign in to comment.