diff options
Diffstat (limited to 'server')
3 files changed, 6 insertions, 6 deletions
diff --git a/server/sonar-web/src/main/js/app/styles/init/tables.css b/server/sonar-web/src/main/js/app/styles/init/tables.css index bf240666c03..d620dcb39a3 100644 --- a/server/sonar-web/src/main/js/app/styles/init/tables.css +++ b/server/sonar-web/src/main/js/app/styles/init/tables.css @@ -74,11 +74,6 @@ table.spacedicon td { width: 1%; } -.spacer { - width: 5px; - display: inline-block; -} - .formError { display: inline-block; background-color: var(--orange); diff --git a/server/sonar-web/src/main/js/apps/account/projects/Projects.tsx b/server/sonar-web/src/main/js/apps/account/projects/Projects.tsx index 614881b3bb8..d702b8140e7 100644 --- a/server/sonar-web/src/main/js/apps/account/projects/Projects.tsx +++ b/server/sonar-web/src/main/js/apps/account/projects/Projects.tsx @@ -55,6 +55,7 @@ export default function Projects(props: Props) { <ListFooter count={projects.length} loadMore={props.loadMore} + loading={props.loading} ready={!props.loading} total={props.total || 0} /> diff --git a/server/sonar-web/src/main/js/apps/component-measures/components/App.tsx b/server/sonar-web/src/main/js/apps/component-measures/components/App.tsx index df8f249abe2..422ef0a65ef 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/components/App.tsx +++ b/server/sonar-web/src/main/js/apps/component-measures/components/App.tsx @@ -292,7 +292,11 @@ export class App extends React.PureComponent<Props, State> { render() { if (this.state.loading) { - return <i className="spinner spacer" />; + return ( + <div className="display-flex-justify-center huge-spacer-top"> + <i className="spinner" /> + </div> + ); } const { branchLike } = this.props; |