-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: replace hard coded bx prefix with variable #1381
Changes from all commits
7ebdf59
253f49e
978b72e
c7039c5
2f84ec2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,11 +13,11 @@ | |
@import '../list-box/list-box'; | ||
|
||
@include exports('multi-select') { | ||
.bx--multi-select.bx--combo-box > .bx--list-box__field { | ||
.#{$prefix}--multi-select.#{$prefix}--combo-box > .#{$prefix}--list-box__field { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm also noticing that box-shadow here, but it looks like we never added the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Might be better in a separate issue around list box styles, there is a lot going on here 🙃 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I'll work on that this morning and fix that up. Disregard! |
||
padding: 0 1rem; | ||
} | ||
|
||
.bx--multi-select.bx--combo-box input[role='combobox'] { | ||
.#{$prefix}--multi-select.#{$prefix}--combo-box input[role='combobox'] { | ||
padding: 0; | ||
outline: none; | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,7 +145,7 @@ | |
} | ||
|
||
.#{$prefix}--overflow-menu-options__option--danger { | ||
.bx--overflow-menu-options__btn { | ||
.#{$prefix}--overflow-menu-options__btn { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure if this has always been the case, but the overflow-menu doesn't show up in experimental mode There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah I can work on that one next week and get it figured out 👍 |
||
&:hover, | ||
&:focus { | ||
color: $inverse-01; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Somewhat related to your PR, but I noticed that
ComboBox
has an extrabox-shadow
that could be bundled in with these changesThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there is box shadow and also the border-bottom on the input inside the list box? 🤔