fix Ox.Fullscreen

This commit is contained in:
rolux 2013-02-10 21:00:36 +05:30
parent 7119f14acf
commit a6d77425bc

View file

@ -1,6 +1,12 @@
body.$themeClass,
body.$themeClass:fullscreen,
body.$themeClass:-moz-full-screen,
body.$themeClass {
background-color: $bodyBackground;
}
body.$themeClass:fullscreen {
background-color: $bodyBackground;
}
body.$themeClass:-moz-full-screen {
background-color: $bodyBackground;
}
body.$themeClass:-webkit-full-screen {
background-color: $bodyBackground;
}