Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/style/system/keyboard.css
diff options
context:
space:
mode:
Diffstat (limited to 'apps/system/style/system/keyboard.css')
-rw-r--r--apps/system/style/system/keyboard.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/apps/system/style/system/keyboard.css b/apps/system/style/system/keyboard.css
new file mode 100644
index 0000000..dab5939
--- /dev/null
+++ b/apps/system/style/system/keyboard.css
@@ -0,0 +1,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;
+}