Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/style/bluetooth_transfer/bluetooth_transfer.css
blob: 1ae60d5bc5a0828b05115642b0484e6f5035e48f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#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); }
}