Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/style/bluetooth_transfer/bluetooth_transfer.css
diff options
context:
space:
mode:
Diffstat (limited to 'apps/system/style/bluetooth_transfer/bluetooth_transfer.css')
-rw-r--r--apps/system/style/bluetooth_transfer/bluetooth_transfer.css53
1 files changed, 0 insertions, 53 deletions
diff --git a/apps/system/style/bluetooth_transfer/bluetooth_transfer.css b/apps/system/style/bluetooth_transfer/bluetooth_transfer.css
deleted file mode 100644
index 1ae60d5..0000000
--- a/apps/system/style/bluetooth_transfer/bluetooth_transfer.css
+++ /dev/null
@@ -1,53 +0,0 @@
-#bluetooth-transfer-status {
- position: relative;
- border-top-color: black;
-
-/* display: none;*/
-}
-
-#bluetooth-transfer-status.displayed {
- display: block;
-}
-
-#bluetooth-transfer-status.applying .bluetooth-transfer-progress {
-/* display: none;*/
-}
-
-#bluetooth-transfer-status .bluetooth-transfer-progress {
- display: block;
- width: auto;
- margin-right: 1.5rem;
-}
-
-#bluetooth-transfer-status progress {
- position: absolute;
- top: 35px;
- left: 50px;
- width: -moz-calc(100% - 105px);
- height: 10px;
- padding: 0;
-
- border: 0;
- border-radius: 10px;
-}
-
-#bluetooth-transfer-status.applying progress {
-/* display: none;*/
-}
-
-#bluetooth-transfer-status progress::-moz-progress-bar {
- border-radius: 10px;
- background-color: #52b6cc;
-}
-
-#bluetooth-transfer-status.applying .icon {
- background-image: url('images/spinner.png');
-
- animation: spin 1.75s infinite linear;
- transform-origin : center center;
-}
-
-@-moz-keyframes spin {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
-}