Fixed: z-index of -1000 caused a blank screen in some browsers

Previously, a z-index value of -1000 caused some browsers to not display certain UI elements correctly. Setting this value to 0 instead seems to fix this.

This commit changes the default value in the templates generated by `capp gen`.

Fixes #2232, Refs #2194
This commit is contained in:
Andrew Hankinson
2014-11-27 11:22:40 -05:00
parent 5ab346e5d1
commit 18a6ecc79a
4 changed files with 4 additions and 4 deletions
@@ -102,7 +102,7 @@
width: 100%;
/* Put it at the bottom of the stack so it doesn't interfere with UI */
z-index: -1000;
z-index: 0;
}
#cappuccino-body .container {
@@ -72,7 +72,7 @@
width: 100%;
/* Put it at the bottom of the stack so it doesn't interfere with UI */
z-index: -1000;
z-index: 0;
}
#cappuccino-body .container {
@@ -102,7 +102,7 @@
width: 100%;
/* Put it at the bottom of the stack so it doesn't interfere with UI */
z-index: -1000;
z-index: 0;
}
#cappuccino-body .container {
@@ -72,7 +72,7 @@
width: 100%;
/* Put it at the bottom of the stack so it doesn't interfere with UI */
z-index: -1000;
z-index: 0;
}
#cappuccino-body .container {