blob: 370baed9db97d45bb0927d8650f0fd6fc35410bf (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
.oe_form_field_html {
position: relative;
word-wrap: break-word;
.note-editable {
min-height: 330px;
font: inherit !important;
font-family: inherit !important;
line-height: inherit !important;
color: inherit !important;
overflow: visible;
p, div {
font-family: 'Lucida Grande', Helvetica, Verdana, Arial, sans-serif;
font-size: 13px;
}
}
ul > li > p, p {
margin: 0px;
}
> iframe {
display: block;
width: 100%;
margin: 0;
padding: 0;
ul > li > p {
margin: 0px;
}
min-height: 300px;
min-height: -webkit-calc(100vh - 170px);
min-height: calc(100vh - 170px);
&.o_readonly {
border: none;
}
}
.rounded {
border-radius: .25rem !important;
}
table.table.table-bordered {
table-layout: fixed;
}
}
.o_field_widgetTextHtml_fullscreen {
.oe_form_field_html.o_form_fullscreen_ancestor iframe {
position: absolute !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;
}
> :not(.modal):not(.modal-backdrop) {
display: none;
}
.o_form_fullscreen_ancestor {
display: block !important;
position: static !important;
top: 0 !important;
left: 0 !important;
width: auto !important;
overflow: hidden !important;
transform: none !important;
}
}
|