Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Labuschagne <blabuschagne@gitlab.com>2019-03-18 17:49:31 +0300
committerClement Ho <clemmakesapps@gmail.com>2019-03-18 17:49:31 +0300
commit40c108f5ed1614667f448f8cfc31f820528f64c3 (patch)
tree7a6edbb58000956d8f94de552d175e5d4c4c0ddf /app/assets/stylesheets/pages/import.scss
parentc94160b9e9e52455a00ad0ab9911bffc0a832d90 (diff)
Resolve "Spinners are active prematurely in Bitbucket Cloud import"
Diffstat (limited to 'app/assets/stylesheets/pages/import.scss')
-rw-r--r--app/assets/stylesheets/pages/import.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/import.scss b/app/assets/stylesheets/pages/import.scss
index 7f800367cad..20240835fda 100644
--- a/app/assets/stylesheets/pages/import.scss
+++ b/app/assets/stylesheets/pages/import.scss
@@ -49,3 +49,15 @@
.import-projects-loading-icon {
margin-top: $gl-padding-32;
}
+
+.btn-import {
+ .loading-icon {
+ display: none;
+ }
+
+ &.is-loading {
+ .loading-icon {
+ display: inline-block;
+ }
+ }
+}