Skip to content

Commit

Permalink
fix(FluidDropdown): update divider styles
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Sep 28, 2022
1 parent dfa4e83 commit 64b08f4
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
// Error + Warning divider
.#{$prefix}--list-box__wrapper--fluid .#{$prefix}--list-box__divider {
display: none;
transition: border-color $duration-fast-01 motion(standard, productive);
transition: background-color $duration-fast-01 motion(standard, productive);
}

.#{$prefix}--list-box__wrapper--fluid
Expand All @@ -157,8 +157,10 @@
.#{$prefix}--list-box--warning
~ .#{$prefix}--list-box__divider {
display: block;
border: 1px solid $border-subtle;
height: rem(1px);
border: none;
margin: 0 1rem;
background-color: $border-subtle;
}

.#{$prefix}--list-box__wrapper--fluid
Expand All @@ -167,7 +169,7 @@
.#{$prefix}--list-box__wrapper--fluid
.#{$prefix}--list-box--warning:hover
~ .#{$prefix}--list-box__divider {
border-color: transparent;
background-color: transparent;
}

// direction - top
Expand Down

0 comments on commit 64b08f4

Please sign in to comment.