summaryrefslogtreecommitdiff
path: root/www/lib/ionic/scss/_spinner.scss
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
commit210e8feae2fb4842bfb2de38666e6c41671fef3c (patch)
treecbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/ionic/scss/_spinner.scss
parente7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff)
removed lib
Diffstat (limited to 'www/lib/ionic/scss/_spinner.scss')
-rw-r--r--www/lib/ionic/scss/_spinner.scss100
1 files changed, 0 insertions, 100 deletions
diff --git a/www/lib/ionic/scss/_spinner.scss b/www/lib/ionic/scss/_spinner.scss
deleted file mode 100644
index 3cec42cf..00000000
--- a/www/lib/ionic/scss/_spinner.scss
+++ /dev/null
@@ -1,100 +0,0 @@
-/**
- * Spinners
- * --------------------------------------------------
- */
-
-.spinner {
- svg {
- width: $spinner-width;
- height: $spinner-height;
- }
-
- stroke: $spinner-default-stroke;
- fill: $spinner-default-fill;
-
- &.spinner-light {
- stroke: $spinner-light-stroke;
- fill: $spinner-light-fill;
- }
- &.spinner-stable {
- stroke: $spinner-stable-stroke;
- fill: $spinner-stable-fill;
- }
- &.spinner-positive {
- stroke: $spinner-positive-stroke;
- fill: $spinner-positive-fill;
- }
- &.spinner-calm {
- stroke: $spinner-calm-stroke;
- fill: $spinner-calm-fill;
- }
- &.spinner-balanced {
- stroke: $spinner-balanced-stroke;
- fill: $spinner-balanced-fill;
- }
- &.spinner-assertive {
- stroke: $spinner-assertive-stroke;
- fill: $spinner-assertive-fill;
- }
- &.spinner-energized {
- stroke: $spinner-energized-stroke;
- fill: $spinner-energized-fill;
- }
- &.spinner-royal {
- stroke: $spinner-royal-stroke;
- fill: $spinner-royal-fill;
- }
- &.spinner-dark {
- stroke: $spinner-dark-stroke;
- fill: $spinner-dark-fill;
- }
-}
-
-.spinner-android {
- stroke: #4b8bf4;
-}
-
-.spinner-ios,
-.spinner-ios-small {
- stroke: #69717d;
-}
-
-.spinner-spiral {
- .stop1 {
- stop-color: $spinner-light-fill;
- stop-opacity: 0;
- }
-
- &.spinner-light {
- .stop1 {
- stop-color: $spinner-default-fill;
- }
- .stop2 {
- stop-color: $spinner-light-fill;
- }
- }
- &.spinner-stable .stop2 {
- stop-color: $spinner-stable-fill;
- }
- &.spinner-positive .stop2 {
- stop-color: $spinner-positive-fill;
- }
- &.spinner-calm .stop2 {
- stop-color: $spinner-calm-fill;
- }
- &.spinner-balanced .stop2 {
- stop-color: $spinner-balanced-fill;
- }
- &.spinner-assertive .stop2 {
- stop-color: $spinner-assertive-fill;
- }
- &.spinner-energized .stop2 {
- stop-color: $spinner-energized-fill;
- }
- &.spinner-royal .stop2 {
- stop-color: $spinner-royal-fill;
- }
- &.spinner-dark .stop2 {
- stop-color: $spinner-dark-fill;
- }
-}