summaryrefslogtreecommitdiffstats
path: root/mobile/android/themes/core/spinner.css
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-04-23 15:32:23 -0400
committerMatt A. Tobin <email@mattatobin.com>2019-04-23 15:32:23 -0400
commitabe80cc31d5a40ebed743085011fbcda0c1a9a10 (patch)
treefb3762f06b84745b182af281abb107b95a9fcf01 /mobile/android/themes/core/spinner.css
parent63295d0087eb58a6eb34cad324c4c53d1b220491 (diff)
downloadUXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.gz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.lz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.xz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.zip
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
Diffstat (limited to 'mobile/android/themes/core/spinner.css')
-rw-r--r--mobile/android/themes/core/spinner.css124
1 files changed, 0 insertions, 124 deletions
diff --git a/mobile/android/themes/core/spinner.css b/mobile/android/themes/core/spinner.css
deleted file mode 100644
index 7f4dd33bb..000000000
--- a/mobile/android/themes/core/spinner.css
+++ /dev/null
@@ -1,124 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-.mui-refresh-main {
- padding: 0;
- overflow: hidden;
- border-radius: 999px;
- position: relative;
-}
-
-.mui-refresh-wrapper {
- width: 60px;
- height: 60px;
-}
-
-.mui-spinner-main {
- width: 60px;
- height: 60px;
- position: relative;
- animation: sporadic-rotate 5.25s cubic-bezier(.35, 0, .25, 1) infinite;
-}
-
-.mui-spinner-wrapper {
- animation: outer-rotate 2.91667s linear infinite;
-}
-
-.mui-spinner-left, .mui-spinner-right {
- position: absolute;
- top: 0;
- height: 60px;
- width: 30px;
- overflow: hidden;
-}
-
-.mui-spinner-left {
- left: 0;
-}
-
-.mui-spinner-right {
- right: 0;
-}
-
-.mui-half-circle-left, .mui-half-circle-right {
- position: absolute;
- top: 0;
- width: 60px;
- height: 60px;
- box-sizing: border-box;
- border-width: 5px;
- border-style: solid;
- border-color: #000 #000 transparent;
- border-radius: 999px;
- animation-iteration-count: infinite;
- animation-duration: 1.3125s;
- animation-timing-function: cubic-bezier(.35, 0, .25, 1);
-}
-
-.mui-half-circle-left {
- left: 0;
- border-right-color: transparent;
- border-top-color: #FF9500; /*matched to fennec_ui_orange in java codebase*/
- border-left-color: #FF9500; /*matched to fennec_ui_orange in java codebase*/
- animation-name: left-wobble;
-}
-
-.mui-half-circle-right {
- right: 0;
- border-left-color: transparent;
- border-top-color: #FF9500; /*matched to fennec_ui_orange in java codebase*/
- border-right-color: #FF9500; /*matched to fennec_ui_orange in java codebase*/
- animation-name: right-wobble;
-}
-
-@keyframes outer-rotate {
- 100% {
- transform: rotate(360deg);
- }
-}
-
-@keyframes left-wobble {
- 0%, 100% {
- transform: rotate(130deg);
- }
- 50% {
- transform: rotate(-5deg);
- }
-}
-
-@keyframes right-wobble {
- 0%, 100% {
- transform: rotate(-130deg);
- }
- 50% {
- transform: rotate(5deg);
- }
-}
-
-@keyframes sporadic-rotate {
- 12.5% {
- transform: rotate(135deg);
- }
- 25% {
- transform: rotate(270deg);
- }
- 37.5% {
- transform: rotate(405deg);
- }
- 50% {
- transform: rotate(540deg);
- }
- 62.5% {
- transform: rotate(675deg);
- }
- 75% {
- transform: rotate(810deg);
- }
- 87.5% {
- transform: rotate(945deg);
- }
- 100% {
- transform: rotate(1080deg);
- }
-}