Skip to content

Commit

Permalink
fix: Add theming parameter for disabled (#809)
Browse files Browse the repository at this point in the history
  • Loading branch information
JKMarkowski committed Mar 29, 2020
1 parent c5f143b commit 8823bc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/input-group.scss
Expand Up @@ -82,7 +82,7 @@ $fd-input-border-radius: var(--sapField_BorderCornerRadius);

@include fd-disabled() {
pointer-events: none;
opacity: 0.4;
opacity: var(--sapContent_DisabledOpacity);
}

&:nth-child(1) {
Expand Down
2 changes: 1 addition & 1 deletion src/mixins/_forms.scss
Expand Up @@ -77,7 +77,7 @@

@include fd-disabled() {
pointer-events: none;
opacity: 0.4;
opacity: var(--sapContent_DisabledOpacity);

&::placeholder {
color: transparent;
Expand Down

0 comments on commit 8823bc6

Please sign in to comment.