Commit c3808ef5 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'remove-extra-spinner-styling' into 'master'

Remove extra styles on loading-container

See merge request gitlab-org/gitlab!17997
parents 51b45ac6 91d18d34
...@@ -98,7 +98,7 @@ export default { ...@@ -98,7 +98,7 @@ export default {
</script> </script>
<template> <template>
<div class="js-deploy-board deploy-board"> <div class="js-deploy-board deploy-board">
<gl-loading-icon v-if="isLoading" /> <gl-loading-icon v-if="isLoading" class="loading-icon" />
<template v-else> <template v-else>
<div v-if="hasLegacyAppLabel" class="bs-callout bs-callout-warning mb-0 mt-0"> <div v-if="hasLegacyAppLabel" class="bs-callout bs-callout-warning mb-0 mt-0">
<span v-html="legacyLabelWarningMessage"></span> <span v-html="legacyLabelWarningMessage"></span>
......
...@@ -96,7 +96,11 @@ export default { ...@@ -96,7 +96,11 @@ export default {
> >
<icon :name="chevronType" /> <icon :name="chevronType" />
</gl-button> </gl-button>
<gl-loading-icon v-if="childrenFlags[itemReference].itemChildrenFetchInProgress" size="sm" /> <gl-loading-icon
v-if="childrenFlags[itemReference].itemChildrenFetchInProgress"
class="loading-icon"
size="sm"
/>
<tree-item-body <tree-item-body
class="tree-item-row" class="tree-item-row"
:parent-item="parentItem" :parent-item="parentItem"
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
margin-left: $gl-sidebar-padding; margin-left: $gl-sidebar-padding;
} }
.loading-container { .loading-icon {
margin-left: $gl-padding-4 / 2; margin-left: $gl-padding-4 / 2;
margin-right: $gl-padding-4; margin-right: $gl-padding-4;
} }
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
background-color: $gray-light; background-color: $gray-light;
min-height: 20px; min-height: 20px;
> .loading-container, > .loading-icon,
> .deploy-board-empty, > .deploy-board-empty,
> .deploy-board-information { > .deploy-board-information {
padding: 10px; padding: 10px;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment