diff options
author | VoeGalore <[email protected]> | 2022-04-29 14:01:49 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-29 22:01:49 +0300 |
commit | 2e641ff8356c2d0b397055273765888cf4620528 (patch) | |
tree | 0ed05fd2ee15d8612eb7b6fec724f6501268c472 /web | |
parent | 63ad6117955e1135f1ff3bd8358a87dfba5b39ea (diff) |
fix fullscreen focus related jiggling & visible round corners (#87)
* Update window.css
prevents fullscreen jiggling of 1px border when toggling focus & fixes fullscreen visible round corners when focus is lost.
* Update window.css
Diffstat (limited to 'web')
-rw-r--r-- | web/share/css/window.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/share/css/window.css b/web/share/css/window.css index 89ff800d..f51bf703 100644 --- a/web/share/css/window.css +++ b/web/share/css/window.css @@ -53,6 +53,8 @@ div.window-resizable.window-active::-webkit-resizer { height: 20px !important; } div.window:fullscreen { + border: 0px; + border-radius: 0px; resize: none !important; position: absolute !important; top: 0px !important; |