-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
QA fixes to align with the new borealis theme #204080
Changes from 3 commits
34d8dc3
d11c3c5
156b0a0
98f3b9e
6368992
921ab1d
b54cc60
7dfac52
3cb5c1a
9ce32c1
303fcbe
36ae387
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 |
---|---|---|
|
@@ -36,10 +36,11 @@ export const SearchLabsBanner: React.FC = () => { | |
<EuiPanel | ||
hasBorder | ||
hasShadow | ||
color="success" | ||
color="accentSecondary" | ||
css={css` | ||
background-image: url(${backgroundImagePath}); | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
`} | ||
> | ||
<SearchLabsLogo | ||
|
@@ -72,7 +73,7 @@ export const SearchLabsBanner: React.FC = () => { | |
<span> | ||
<EuiButton | ||
href="https://www.elastic.co/search-labs/tutorials" | ||
color="success" | ||
color="accentSecondary" | ||
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. @andreadelrio If the button sits inside a panel, shouldn't it follow that panels color? So does this mean we can no longer have an 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. As agreed in Slack, will keep this as success panel with a success button. |
||
fill | ||
target="_blank" | ||
> | ||
|
@@ -86,7 +87,7 @@ export const SearchLabsBanner: React.FC = () => { | |
<span> | ||
<EuiButton | ||
href="https://www.elastic.co/search-labs/tutorials/examples" | ||
color="success" | ||
color="accentSecondary" | ||
target="_blank" | ||
> | ||
{i18n.translate('xpack.enterpriseSearch.shared.searchLabsBanner.notebooksLabel', { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ export const SearchNotebooksButton = ({ | |
if (activeView) { | ||
return ( | ||
<EuiButton | ||
color="success" | ||
color="accentSecondary" | ||
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. @mdefazio it looks like EUI won't be supporting 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. Pasted in following comment |
||
fill | ||
onClick={onClick} | ||
size="s" | ||
|
@@ -47,7 +47,7 @@ export const SearchNotebooksButton = ({ | |
} | ||
return ( | ||
<EuiButtonEmpty | ||
color="success" | ||
color="accentSecondary" | ||
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. Same comment as above 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. cc/ @julianrosado @daveyholler for awareness I guess I'd go for primary here? |
||
onClick={onClick} | ||
size="s" | ||
iconType="documentation" | ||
|
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.
As far as I've been told, latest design decision is that EuiBadge should not support
accentSecondary
, we're removing it in the next Borealis version (EUI PR).The guidance is to keep
success
in place.cc @ek-so