-
Notifications
You must be signed in to change notification settings - Fork 36
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 (styles): Update border color of Search Relevance to be compliant with Dark Mode #315
Changes from 2 commits
d715233
27b976d
ef502cb
cbb5893
489da94
cebba09
4a35b0b
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
min-height: 500px; | ||
|
||
&:nth-child(1) { | ||
border-right: 1px solid #D3DAE6; | ||
border-right: 1px solid $euiBorderColor; | ||
} | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,13 @@ | |
.search-relevance-config:nth-child(1) { | ||
margin: 0; | ||
padding: 12px; | ||
border-right: 1px solid #D3DAE6; | ||
border-right: 1px solid $euiBorderColor; | ||
} | ||
|
||
|
||
.right-border { | ||
border-right: 0; | ||
} | ||
|
||
.left-border { | ||
border-left: 0; | ||
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. Could this be in a single class? 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 was actually thinking about putting them in one called "left-right-borders" but wasn't sure if there was a specific naming convention I needed to follow? If that works, I'll make the change. |
||
} |
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.
Change to
textmate
should've been merged in, may need a rebase? Or did this come up only from this PR?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.
Yeah, I think it needs a rebase. Thanks for catching that, I'll look into it!