From 84f61b20c0eda9b53f548c0ff8daf3398e847d74 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 27 Aug 2018 16:58:55 +0200 Subject: [PATCH] Removed loader styles --- src/styles/index.less | 3 +- src/styles/loader.less | 88 ------------------------------------------ 2 files changed, 1 insertion(+), 90 deletions(-) delete mode 100644 src/styles/loader.less diff --git a/src/styles/index.less b/src/styles/index.less index e2fc57fb..743b26a0 100644 --- a/src/styles/index.less +++ b/src/styles/index.less @@ -14,5 +14,4 @@ @import './notification.less'; -@import './inputs.less'; -@import './loader.less'; +@import './inputs.less'; \ No newline at end of file diff --git a/src/styles/loader.less b/src/styles/loader.less deleted file mode 100644 index 9e53392a..00000000 --- a/src/styles/loader.less +++ /dev/null @@ -1,88 +0,0 @@ -.loader-circle { - - position: relative; - width: 100px; - height: 100px; - display: flex; - justify-content: center; - align-items: center; - - p { - position: absolute; - //margin: auto; - //line-height: 100%; - color: @color_text_secondary; - } - - .circular { - - width: 100%; - height: 100%; - animation: rotate 2s linear infinite; - transform-origin: center center; - - position: absolute; - - .route { - stroke: @color_gray_light; - } - - .path { - stroke-dasharray: 1, 200; - stroke-dashoffset: 0; - animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite; - stroke-linecap: round; - } - } - - &.info { - .path { - animation: dash 1.5s ease-in-out infinite, colorInfo 6s ease-in-out infinite; - } - } -} - -@keyframes dash { - 0% { - stroke-dasharray: 1, 200; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 89, 200; - stroke-dashoffset: -35; - } - 100% { - stroke-dasharray: 89, 200; - stroke-dashoffset: -124; - } -} - -@keyframes color { - 100%, 0% { - stroke: @color_green_primary; - } - 40% { - stroke: @color_green_primary; - } - 66% { - stroke: @color_green_secondary; - } - 80%, 90% { - stroke: @color_green_tertiary; - } -} - -@keyframes colorInfo { - 100%, 0% { - stroke: @color_info_primary; - } - 40% { - stroke: @color_info_primary; - } - 66% { - stroke: @color_info_primary; - } - 80%, 90% { - stroke: @color_info_primary; - } -} \ No newline at end of file