Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const QueryCardHeader = (props: Props) => {
<EuiButtonIcon
iconType="copy"
aria-label="Copy query"
className="copy-btn"
className={cx('copy-btn', styles.copyBtn)}
disabled={emptyCommand}
onClick={(event: React.MouseEvent) => handleCopy(event, query || '')}
data-testid="copy-command"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,14 @@ $marginIcon: 12px;
}

.titleWrapper {
justify-content: center;
min-height: 24px;
overflow: hidden;

.copyBtn {
margin-top: 2px;
margin-left: 12px !important;
}
}

.controls {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
padding: 16px 30px !important;
border-color: var(--euiColorPrimary) !important;
:global(.euiPopover__panelArrow:before) {
border-top-color: var(--euiColorPrimary) !important;
border-top-color: var(--euiColorLightShade) !important;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.panelPopover {
border-color: var(--euiColorPrimary) !important;
:global(.euiPopover__panelArrow:before) {
border-top-color: var(--euiColorPrimary) !important;
border-top-color: var(--euiColorLightShade) !important;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,6 @@
line-height: 24px;
}

.panelPopover {
border-color: var(--euiColorPrimary) !important;
:global(.euiPopover__panelArrow:before) {
border-top-color: var(--euiColorPrimary) !important;
}
}

.popoverIcon {
position: absolute;
color: var(--euiColorWarningLight) !important;
width: 24px !important;
height: 24px !important;
}

.popoverItem {
font-size: 13px !important;
line-height: 18px !important;
padding-left: 34px;
}

.popoverItemTitle {
color: var(--htmlColor) !important;
font-size: 14px !important;
line-height: 24px !important;
}

.content {
display: flex;
min-height: 20px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const Recommendations = () => {
{title}
</EuiFlexItem>
</EuiFlexGroup>
<EuiFlexItem grow={false}>2
<EuiFlexItem grow={false}>
<RecommendationBadges badges={badges} />
</EuiFlexItem>
</EuiFlexGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const DatabaseForm = (props: Props) => {
<EuiFormRow label="Host*">
<EuiFieldText
autoFocus={autoFocus}
name="host"
name="ip"
id="host"
data-testid="host"
color="secondary"
Expand Down