Skip to content

Commit

Permalink
Fixed missing gaps in some loading spinners
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Dec 11, 2023
1 parent d88ba9b commit f793916
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/auth-plugins/src/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function LoginForm({
>
{isLoggingIn && (
<span>
<LoadingSpinner className="loading-spinner-vertical-align" />
<LoadingSpinner className="mr-2 loading-spinner-vertical-align" />
<span className="btn-normal-content">Logging in</span>
<span className="btn-hover-content">Cancel</span>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class ConsoleHistoryResultInProgress extends Component<
})}
>
<span className="badge">
<LoadingSpinner />
<LoadingSpinner className="ml-2" />
Running... {TimeUtils.formatElapsedTime(elapsed)}&nbsp;
<Button
className="console-history-result-in-progress-cancel"
Expand Down
2 changes: 1 addition & 1 deletion packages/iris-grid/src/sidebar/CustomColumnBuilder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class CustomColumnBuilder extends Component<
>
{isCustomColumnApplying && (
<span>
<LoadingSpinner className="loading-spinner-vertical-align" />
<LoadingSpinner className="mr-2 loading-spinner-vertical-align" />
<span className="btn-normal-content">Applying</span>
</span>
)}
Expand Down
2 changes: 1 addition & 1 deletion packages/iris-grid/src/sidebar/TableCsvExporter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ class TableCsvExporter extends Component<
>
{isDownloading && (
<span>
<LoadingSpinner className="loading-spinner-vertical-align" />
<LoadingSpinner className="mr-2 loading-spinner-vertical-align" />
<span className="btn-normal-content">Downloading</span>
<span className="btn-hover-content">Cancel</span>
</span>
Expand Down

0 comments on commit f793916

Please sign in to comment.