Fix fullscreen pseudo CSS class name

Change from `:full-screen` to `:fullscreen`.
See https://fullscreen.spec.whatwg.org/#:fullscreen-pseudo-class
This commit is contained in:
Frederic Junod
2015-03-25 11:13:28 +01:00
parent 8beeee8a95
commit 40f4d5256b
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
.map:-webkit-full-screen {
height: 100%;
}
.map:full-screen {
.map:fullscreen {
height: 100%;
}
</style>