Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
8 changes: 4 additions & 4 deletions packages/eui-theme-borealis/src/variables/_components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ export const components: _EuiThemeComponents = {
listGroupItemBackgroundPrimaryHover:
dark_background_colors.backgroundBaseInteractiveHover,

loadingChartMonoBackground0: SEMANTIC_COLORS.shade95,
loadingChartMonoBackground1: SEMANTIC_COLORS.shade105,
loadingChartMonoBackground2: SEMANTIC_COLORS.shade115,
loadingChartMonoBackground3: SEMANTIC_COLORS.shade125,
loadingChartMonoBackground0: SEMANTIC_COLORS.shade110,
loadingChartMonoBackground1: SEMANTIC_COLORS.shade100,
loadingChartMonoBackground2: SEMANTIC_COLORS.shade90,
loadingChartMonoBackground3: SEMANTIC_COLORS.shade80,

markBackground: dark_background_colors.backgroundLightPrimary,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ exports[`EuiButton props isLoading is rendered 1`] = `
aria-label="Loading"
class="euiLoadingSpinner emotion-euiLoadingSpinner-m"
role="progressbar"
style="border-color: #0077cc currentcolor currentcolor currentcolor;"
style="border-color: #99c9eb currentcolor currentcolor currentcolor;"
/>
</span>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exports[`EuiButtonDisplayContent button icon loading icon renders disabled & loa
aria-label="Loading"
class="euiLoadingSpinner emotion-euiLoadingSpinner-m"
role="progressbar"
style="border-color: #0077cc currentcolor currentcolor currentcolor;"
style="border-color: #99c9eb currentcolor currentcolor currentcolor;"
/>
<span
class="eui-textTruncate"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ exports[`EuiButtonEmpty props isLoading is rendered 1`] = `
aria-label="Loading"
class="euiLoadingSpinner emotion-euiLoadingSpinner-m"
role="progressbar"
style="border-color: #0077cc currentcolor currentcolor currentcolor;"
style="border-color: #99c9eb currentcolor currentcolor currentcolor;"
/>
<span
class="eui-textTruncate euiButtonEmpty__text"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ exports[`EuiButtonIcon props isLoading is rendered 1`] = `
aria-label="Loading"
class="euiLoadingSpinner emotion-euiLoadingSpinner-m"
role="progressbar"
style="border-color: #0077cc currentcolor currentcolor currentcolor;"
style="border-color: #99c9eb currentcolor currentcolor currentcolor;"
/>
</button>
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exports[`EuiLoadingSpinner custom colors 1`] = `
aria-label="Loading"
class="euiLoadingSpinner emotion-euiLoadingSpinner-m"
role="progressbar"
style="border-color: #0077cc white white white;"
style="border-color: #99c9eb white white white;"
/>
<span
aria-label="Loading"
Expand Down
4 changes: 2 additions & 2 deletions packages/eui/src/components/loading/loading_spinner.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export const euiSpinnerBorderColorsCSS = (
colors: EuiLoadingSpinnerColor = {}
): string => {
const {
border = euiTheme.colors.lightShade,
highlight = euiTheme.colors.primary,
border = euiTheme.colors.borderBasePlain,
highlight = euiTheme.colors.borderStrongPrimary,
Comment thread
mgadewoll marked this conversation as resolved.
Outdated
} = colors;
return `${highlight} ${border} ${border} ${border}`;
};
Expand Down