Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/style/system/keyboard.css
blob: dab5939f5374f9f204eae89cedf02b33ef8a04fb (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
#keyboard-frame {
  /* See the new mozpasspointerevents attribute added in bug 796452 */
  pointer-events: none;

  position: absolute;
  bottom: 0;

  width: 100%;
  height: 100%;

  transform: translateY(0);
  -moz-transition: visibility 0.2s ease, -moz-transform 0.2s ease;
}

#keyboard-frame.hide {
  visibility: hidden;

  transform: translateY(100%);
}

#keyboard-frame iframe {
  position: absolute;
  bottom: 0;

  width: 100%;
  height: 100%;
  border: 0;
}