Skip to content

Commit

Permalink
Merge branch 'next' into overlay-ref
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoegelin authored Jan 8, 2025
2 parents 926fc10 + 40077a1 commit 44ca74a
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
16 changes: 16 additions & 0 deletions projects/novo-elements/src/elements/field/field-fill.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,22 @@
border-bottom: 1px solid $negative !important;
}
}
&.novo-field-disabled {
.novo-field-input {
color: $grey !important;
border-bottom: 1px dashed $grey !important;
}
&:not(.novo-focused):hover {
.novo-field-input {
color: $grey !important;
border-bottom: 1px dashed $grey !important;
}
}
}
.novo-field-input:disabled {
color: $grey !important;
border-bottom: 1px dashed $grey !important;
}
}
}
}
16 changes: 16 additions & 0 deletions projects/novo-elements/src/elements/field/field-standard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@
border-bottom: 1px solid $negative !important;
}
}
&.novo-field-disabled {
.novo-field-input {
color: $grey !important;
border-bottom: 1px dashed $grey !important;
}
&:not(.novo-focused):hover {
.novo-field-input {
color: $grey !important;
border-bottom: 1px dashed $grey !important;
}
}
}
.novo-field-input:disabled {
color: $grey !important;
border-bottom: 1px dashed $grey !important;
}
}
}
}
15 changes: 14 additions & 1 deletion projects/novo-elements/src/elements/select/Select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,24 @@
right: 0px;
}
}
&[disabled] {
&[disabled],
&.novo-select-disabled {
pointer-events: none;
div[type="button"] {
color: $grey;
}
i {
color: $grey !important;
}
.novo-select-trigger {
color: $grey !important;
border-bottom: 1px dashed $grey !important;

&:hover {
color: $grey !important;
border-bottom: 1px dashed $grey !important;
}
}
}
}

Expand Down

0 comments on commit 44ca74a

Please sign in to comment.