1234567891011121314151617181920212223242526272829303132333435 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-IFrame {
- width: 100%;
- height: 100%;
- }
- .jp-IFrame > iframe {
- border: none;
- }
- /*
- When drag events occur, `p-mod-override-cursor` is added to the body.
- Because iframes steal all cursor events, the following two rules are necessary
- to suppress pointer events while resize drags are occuring. There may be a
- better solution to this problem.
- */
- body.p-mod-override-cursor .jp-IFrame {
- position: relative;
- }
- body.p-mod-override-cursor .jp-IFrame:before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: transparent;
- }
|