summaryrefslogtreecommitdiff
path: root/addons/web_editor/static/src/scss/wysiwyg_iframe.scss
blob: 4e00d0bb719c9a8a1d58181914e9d906767ad807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
iframe.wysiwyg_iframe.o_fullscreen {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    min-height: 100% !important;
    z-index: 1001 !important;
    border: 0;
}

.o_wysiwyg_no_transform {
    transform: none !important;
}

body.o_in_iframe {
    background-color: $o-view-background-color;

    &.editor_enable {
        padding-top: var(--o-we-toolbar-height) !important;
    }

    .note-statusbar {
        display: none;
    }
}