diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-08 20:31:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 20:31:02 -0500 |
commit | 125c296eedf680ad7670544aa8f74d81fa9aa799 (patch) | |
tree | f91c4243fd08cad8258ec136228264d332569ab3 /ext/mixed/css/popup-outer.css | |
parent | 2be81cbb77f8a15f9049048078d69d5fee871f33 (diff) |
Support frame resize on firefox (#1088)
* Add popup functions for getting/setting the frame size
* Add frontend functions for getting/setting popup frame size
* Expose display mode attribute on display HTML
* Disable resizer on iframe
* Add custom frame resizer handle
* Add support for custom frame resizer
Diffstat (limited to 'ext/mixed/css/popup-outer.css')
-rw-r--r-- | ext/mixed/css/popup-outer.css | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/mixed/css/popup-outer.css b/ext/mixed/css/popup-outer.css index 74307d9f..0ee8df9e 100644 --- a/ext/mixed/css/popup-outer.css +++ b/ext/mixed/css/popup-outer.css @@ -22,7 +22,7 @@ iframe.yomichan-popup { border: 1em solid #999999; box-shadow: 0 0 10em rgba(0, 0, 0, 0.5); position: fixed; - resize: both; + resize: none; visibility: hidden; z-index: 2147483647; box-sizing: border-box; @@ -38,7 +38,6 @@ iframe.yomichan-popup[data-outer-theme=auto][data-site-color=dark] { iframe.yomichan-popup[data-popup-display-mode=full-width] { border-left: none; border-right: none; - resize: none; } iframe.yomichan-popup[data-popup-display-mode=full-width][data-below=true] { border-bottom: none; |