summaryrefslogtreecommitdiff
path: root/addons/web_editor/static/src/scss/wysiwyg_iframe.scss
diff options
context:
space:
mode:
Diffstat (limited to 'addons/web_editor/static/src/scss/wysiwyg_iframe.scss')
-rw-r--r--addons/web_editor/static/src/scss/wysiwyg_iframe.scss27
1 files changed, 27 insertions, 0 deletions
diff --git a/addons/web_editor/static/src/scss/wysiwyg_iframe.scss b/addons/web_editor/static/src/scss/wysiwyg_iframe.scss
new file mode 100644
index 00000000..4e00d0bb
--- /dev/null
+++ b/addons/web_editor/static/src/scss/wysiwyg_iframe.scss
@@ -0,0 +1,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;
+ }
+}