add css rules for fullscreen

This commit is contained in:
rlx 2012-11-01 14:55:56 +00:00
parent aede993d74
commit 985b34ac72
2 changed files with 20 additions and 0 deletions

View file

@ -1,3 +1,13 @@
html:fullscreen {
background: rgb(240, 240, 240);
}
html:-moz-full-screen {
background: rgb(240, 240, 240);
}
html:-webkit-full-screen {
background: rgb(240, 240, 240);
}
body.OxThemeClassic {
background: rgb(240, 240, 240);
}

View file

@ -1,5 +1,15 @@
/* fixme: it wouldn't hurt if focus was blue */
html:fullscreen {
background: rgb(16, 16, 16);
}
html:-moz-full-screen {
background: rgb(16, 16, 16);
}
html:-webkit-full-screen {
background: rgb(16, 16, 16);
}
body.OxThemeModern {
background: rgb(16, 16, 16);
}