Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/style/trusted_ui/trusted_ui.css
blob: 5367fcc89cf81d37c6d61b6f8c5a971e31feb20e (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#trustedui-container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  transition: transform ease 0.5s, opacity 0.5s;
}

#screen #trustedui-container.up {
  opacity: 0;
  transform: translateY(-100%);
}

#trustedui-inner {
  position: absolute;
  width: 86%;
  height: 86%;
  top: 7%;
  left: 7%;
  transition: transform ease 0.5s, opacity 0.5s;
}

#screen:not(.trustedui) #trustedui-inner {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#screen.trustedui #trustedui-container {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

#screen.trustedui #trustedui-container.closing,
#screen:not(.trustedui) #trustedui-container.closing {
  opacity: 0;
  transform: scale(0.6);
}

#trustedui-throbber {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1;
}

#trustedui-throbber.loading {
  height: 4px;
  background-image: url('../shared/progress.gif');
}

#trustedui-inner > .title-container {
  height: 5rem;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

#trustedui-inner > #trustedui-frame-container {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  height: calc(100% - 5rem);
  border: none;
  background-color: #fff;
}

#trustedui-frame-container > iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#trustedui-inner iframe:not(.selected) {
  display: none;
}