diff options
author | Devaev Maxim <[email protected]> | 2021-04-16 12:00:34 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-04-16 12:00:34 +0300 |
commit | cfce96d66b50b3eb2fa707896b952d5006beace9 (patch) | |
tree | 41b40db73e963ff3ad48bb0f5ab91fcd8c82ad74 /web/share/css/window.css | |
parent | e40d179032aa9a73681c40121d7ba3c6dfaf5dc0 (diff) |
fixed full screen mode in safari
Diffstat (limited to 'web/share/css/window.css')
-rw-r--r-- | web/share/css/window.css | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/web/share/css/window.css b/web/share/css/window.css index e50db8ba..196adfa1 100644 --- a/web/share/css/window.css +++ b/web/share/css/window.css @@ -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 { |