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:
authorPhil Hughes <me@iamphill.com>2016-04-11 20:27:34 +0300
committerPhil Hughes <me@iamphill.com>2016-04-11 20:27:34 +0300
commit3cfbd2b1601842feea0a7739098a90e2d1dccec4 (patch)
tree8f58cb309a03fbf4ae33ac9727a700a592ff1613 /app/assets/stylesheets/pages/import.scss
parent4087bd16e8e083550d306fd0c90d2a892b8577bf (diff)
Added loading icon to import buttons
See #14488 for more details
Diffstat (limited to 'app/assets/stylesheets/pages/import.scss')
-rw-r--r--app/assets/stylesheets/pages/import.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/import.scss b/app/assets/stylesheets/pages/import.scss
index 6a99cd9cb94..84cc35239f9 100644
--- a/app/assets/stylesheets/pages/import.scss
+++ b/app/assets/stylesheets/pages/import.scss
@@ -16,3 +16,24 @@ i.icon-gitorious-big {
width: 18px;
height: 18px;
}
+
+.import-jobs-from-col,
+.import-jobs-to-col {
+ width: 40%;
+}
+
+.import-jobs-status-col {
+ width: 20%;
+}
+
+.btn-import {
+ .loading-icon {
+ display: none;
+ }
+
+ &.is-loading {
+ .loading-icon {
+ display: inline-block;
+ }
+ }
+}