Skip to content

Commit

Permalink
PATCH: fix bimdata button disabled (#152)
Browse files Browse the repository at this point in the history
* add no hover effect when  btn disabled

* add default cursor for number of items into navigation
  • Loading branch information
LrxGaelle authored Jan 26, 2022
1 parent 668c410 commit 17ee9eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/BIMDataComponents/BIMDataButton/_BIMDataButton.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@
background-color: var(--color-silver-dark);
color: var(--color-white);
cursor: auto;
&:hover {
background-color: transparent;
}
}
}
&__ripple {
Expand Down Expand Up @@ -231,6 +234,9 @@
border-color: var(--color-silver-dark);
color: var(--color-silver-dark);
cursor: auto;
&:hover {
background-color: transparent;
}
}
}
&__ghost {
Expand Down Expand Up @@ -278,6 +284,9 @@
&:disabled {
color: var(--color-silver-dark);
cursor: auto;
&:hover {
background-color: transparent;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@
&__right {
padding: 6px 2px;
font-size: 10px;
cursor: default;
}
}

0 comments on commit 17ee9eb

Please sign in to comment.