Skip to content

Commit

Permalink
Merge pull request #102 from nih-sparc/style-fixes
Browse files Browse the repository at this point in the history
style changes
  • Loading branch information
egauzens authored Mar 8, 2022
2 parents 9a22cda + a15b170 commit 3a7c97d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nih-sparc/sparc-design-system-components",
"version": "0.26.12",
"version": "0.26.13",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
4 changes: 2 additions & 2 deletions src/assets/components/_el-input.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.el-input {
&.secondary {
.el-input__inner {
border-color: #dcdfe6;
border-color: $lineColor1
}
}
&__inner {
Expand All @@ -30,7 +30,7 @@
}
&.is-disabled {
.el-input__inner {
border-color: #dcdfe6;
border-color: $lineColor1;
color: $mediumGrey;
&:hover {
border-color: #dcdfe6 !important;
Expand Down
2 changes: 1 addition & 1 deletion src/assets/components/_el-select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
&.secondary {
.el-input {
input {
border-color: lightgray;
border-color: $lightGrey;
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/components/DropdownMultiselect/src/DropdownLabel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default {
<style lang="scss" scoped>
@import '../../../assets/_variables.scss';
.label-content-container {
background-color: rgb(250, 251, 252);
background-color: $background
}
.label-header {
Expand Down Expand Up @@ -115,12 +115,12 @@ export default {
hr {
border: none;
border-bottom: 1px solid #dbdfe6;
border-bottom: 1px solid $lineColor2;
margin: 0;
}
.disabled {
opacity: 0.5;
background-color: #fafbfc;
background-color: $background;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export default {
@import '../../../assets/_variables.scss';
.sparc-design-system-component-dropdown-multiselect {
background-color: white;
border: 1px solid #dbdfe6;
border: 1px solid $lineColor2;
border-top: none;
}
Expand All @@ -319,7 +319,7 @@ export default {
}
}
.light-gray-background .el-tree {
background: rgb(250, 251, 252);
background: $background;
}
.el-tree-node__expand-icon.el-icon-caret-right {
order: 1;
Expand Down

0 comments on commit 3a7c97d

Please sign in to comment.