fixed full screen mode in safari

This commit is contained in:
Devaev Maxim
2021-04-16 12:00:34 +03:00
parent e40d179032
commit cfce96d66b
2 changed files with 33 additions and 12 deletions

View File

@@ -52,12 +52,22 @@ div.window-resizable.window-active::-webkit-resizer {
width: 20px !important;
height: 20px !important;
}
div.window-full-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
div.window:fullscreen {
resize: none !important;
position: absolute !important;
top: 0px !important;
left: 0px !important;
width: 100% !important;
height: 100% !important;
}
div.window:-webkit-full-screen {
resize: none !important;
position: absolute !important;
top: 0px !important;
left: 0px !important;
width: 100% !important;
height: 100% !important;
padding: 0px !important;
}
div.window div.window-header {