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:
authorDimitrie Hoekstra <dimitriehoekstra@gmail.com>2016-12-08 16:08:08 +0300
committerKushal Pandya <kushal@gitlab.com>2016-12-21 10:46:17 +0300
commitff0c3fc23b9808438c8959e835937c48297de9b3 (patch)
treefe546617974065c08dcfcb5dc0fcc5815eb3620a /app/assets/stylesheets/pages/builds.scss
parentf06678cb1af25a4d7e3b3dae29c15eda58935e59 (diff)
added a running loading indicator
Diffstat (limited to 'app/assets/stylesheets/pages/builds.scss')
-rw-r--r--app/assets/stylesheets/pages/builds.scss33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/builds.scss b/app/assets/stylesheets/pages/builds.scss
index ece9568cba3..b50971af4e6 100644
--- a/app/assets/stylesheets/pages/builds.scss
+++ b/app/assets/stylesheets/pages/builds.scss
@@ -178,6 +178,39 @@
.bash {
display: block;
}
+
+ .typing_loader{
+ width: 6px;
+ height: 6px;
+ border-radius: 50%;
+ animation: typing 1s linear infinite;
+ position: relative;
+ margin-bottom: 12px;
+ margin-left: 2px;
+ }
+
+ @keyframes typing{
+ 0%{
+ background-color: rgba(255,255,255, 1);
+ box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
+ 24px 0px 0px 0px rgba(255,255,255,0.2);
+ }
+ 25%{
+ background-color: rgba(255,255,255, 0.4);
+ box-shadow: 12px 0px 0px 0px rgba(255,255,255,2),
+ 24px 0px 0px 0px rgba(255,255,255,0.2);
+ }
+ 75%{
+ background-color: rgba(255,255,255, 0.4);
+ box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
+ 24px 0px 0px 0px rgba(255,255,255,1);
+ }
+ 100%{
+ background-color: rgba(255,255,255, 1);
+ box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
+ 24px 0px 0px 0px rgba(255,255,255,0.2);
+ }
+ }
}
.right-sidebar.build-sidebar {